The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
21 views

Perfomance of the PAGE_WRITECOPY windows internal memory

I need to implement the undo-redo feature in an application, which reads a project file and makes a sequence of separate transactions changing the project's content. The project can be hundreds MB ...
0
votes
1answer
68 views

Copy-on-write pointer object in C++

I tried to follow this article http://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/Copy-on-write on how to implement copy on write pointers in C++. The problem is, it doesn't work for me. The crux of ...
6
votes
2answers
93 views

Shared memory and copy on write or rvalue references and move semantics?

Is a shared memory/copy on write implementation for general containers (like that found in Qt's containers) superseded by C++11 move semantics and rvalue references? Where does one fail and the other ...
3
votes
1answer
67 views

Avoid read-only forked() RAM allocation on exit in Perl

In Perl, I generate a huge read-only data-structure once, then fork(). This is to take advantage of COW on RSS pages when forking. It works really well, but when a child process exits, it allocates ...
3
votes
2answers
79 views

Decorate a char* and char const* by pointer acquisition : good practice?

Hello I wanted to poll the public about my idea of doing a string class (like std::string) that would have a feature of being able to work on buffers provided by the client. What are the dangers that ...
1
vote
2answers
145 views

Passing by Reference (when variable can change, but it does not have to)

It has been explained quite thoroughly that you only pass by reference in PHP if their is a technical reason to do so, because Copy-On-Write basically makes the performance equivalent. From what I ...
10
votes
3answers
458 views

Does (string) 'hard-copy' a string?

PHP uses a copy-on-modification system. Does $a = (string) $a; ($a is a already string) modify and copy anything? Especially, this is my problem: Parameter 1 is mixed / I want to allow to pass ...
3
votes
2answers
128 views

Safe to use auto_ptr to swap objects without locking in multithreaded environment?

I have a few data structures I allocate on the heap that are rarely modified but need fast read access. One example would be a struct allocated on the heap that is accessed by many threads very ...
0
votes
1answer
50 views

got UnsupportedOperationException while modifying CopyOnWriteArraySet

Studying Java Generics and Collection book by By Maurice Naftalin, Philip Wadler, I left off at CopyOnWriteArraySet section, trying practice while studying to make it stick to my mind, But I faced a ...
3
votes
2answers
346 views

How does copy-on-write in fork() handle multiple fork?

According to wikipedia (which could be wrong) When a fork() system call is issued, a copy of all the pages corresponding to the parent process is created, loaded into a separate memory location by ...
1
vote
2answers
83 views

Does PHP's extract() function add variables to the symbol table using copy-on-write?

Sorry, Im sure this answer is somewhere on the internet (maybe even stackoverflow) but I have spent the last hour searching and cant seem to find the answer... Does PHP's extract() function add ...
1
vote
5answers
163 views

alias a hash element in perl

Is it possible to access the same value under different hash keys? How can I tell Perl not to copy the "very long text?" $hash->{'key'} = 'very long text'; $hash->{'alias'} = ...
0
votes
0answers
160 views

Open source copy-on-write b-tree implementation

Is there any stable open source copy-on-write b-tree C/C++/Java library? I need such a data structure to implement a distributed indexing/searching system. AFAIK, the linux kernel does include such a ...
0
votes
3answers
209 views

rely on java String copy on write

My application creates a lot of instances of a class, say class A. All instance contains a string, and most of them contain the same String class A { String myString; } I know that JVM makes ...
18
votes
4answers
825 views

Legality of COW std::string implementation in C++11

It had been my understanding that copy-on-write is not a viable way to implement a conforming std::string in C++11, but when it came up in discussion recently I found myself unable to directly support ...
5
votes
5answers
299 views

In Java can I depend on reference assignment being atomic to implement copy on write?

If I have an unsynchronized java collection in a multithreaded environment, and I don't want to force readers of the collection to synchronize[1], is a solution where I synchronize the writers and use ...
1
vote
0answers
139 views

Doing a COW copy inside the Linux kernel?

So, I was wondering - how would I go about implementing copying memory pages (struct page) inside the kernel and utilizing the copy-on-write mechanism instead of transferring the data immediately. ...
0
votes
1answer
152 views

QImage copy on write

is QImage based on QSharedData ? Do Qimage follow pimpl or copy on write ? e.g. would copying(through copy con or assignment) an Qimage make a deep copy of pixels ?
7
votes
2answers
123 views

Iterators and reference counted strings

If we consider a std::string implementation that uses reference counting, consider this scenario: int main() { string english = "Hello"; string german = english; //refcnt = 2 string german2 = ...
3
votes
1answer
353 views

How to Disable Copy-on-write and zero filled on demand for mmap()

I am implementing cp(file copy) command using mmap(). For that I mapped the source file in MAP_PRIVATE (As I just want to read)mode and destination file in MAP_SHARED mode(As I have to writeback the ...
0
votes
2answers
151 views

Will copy-on-write prevent data duplication on arrays?

I am programming a web API client in PHP that parses CSV data into associative arrays and I want to protect my users from data-duplication when using these arrays. My users will never be writing to ...
1
vote
1answer
174 views

Get the copy-on-write behaviour of fork()ing, without fork()

I have a large buffer: char *buf = malloc(1000000000); // 1GB If I forked a new process, it would have a buf which shared memory with the parent's buf until one or the other wrote to it. Even ...
1
vote
1answer
204 views

Qt: Is it OK to use QString as a member in exception class

I am developing a custom exception, where I'd need a QString member. Something like: class MyException { private: const QString fDescription; public: MyException(QString desc); }; ...
2
votes
1answer
262 views

Are Ruby fork are COW friendly if yes how to test it

I have read some where that ruby fork are COW friendly ok here the link But then when I happen to google around for more info on it I found out that Ruby does not support COW (copy on write) Now ...
2
votes
3answers
132 views

PHP null and copy-on-write

Suppose I want to have two variables and have them both equal to null. (More realistically, I am thinking about an array that contains a large amount of nulls, but the "two variables" scenario is ...
0
votes
1answer
75 views

Why there is no SIGSEGV signal on copy on write?

The copy-on-write article on wikipedia says that copy-on-write is usually implemented by giving read only access to the pages, so that when one is written, the page fault trap handler can map a unique ...
5
votes
1answer
373 views

Making more efficient use fork() and copy-on-write memory sharing

I am a programmer developing a multiplayer online game using Linux based servers. We use an "instanced" architecture for our world. This means that each player entering a world area gets a copy of ...
5
votes
1answer
342 views

R: selecting subset without copying

Is there a way to select a subset from objects (data frames, matrices, vectors) without making a copy of selected data? I work with quite large data sets, but never change them. However often for ...
1
vote
1answer
381 views

invoking do_fork with copy-on-write disabled

I am doing an Operating System assignment, which is adding a new system call. The system call, which is called "dumbfork", needs to fork a process without using copy-on-write policy. So basically it ...
1
vote
2answers
391 views

mprotect in linux

If I mprotect a segment with PROT_NONE and if a SIGSEGV occurs due to a write which gets handled by sigaction with sa_sigaction, We will be able to find the address where the fault occurs using ...
1
vote
3answers
121 views

sometimes we declare “&” ahead of function in class based coding

I am following class based coding for project development.I have recently seen that some times we put "&" ahead of function name.. for an example.. rather than defining function test() it ...
1
vote
3answers
82 views

why is the code behaving this way WRT reference return?

This is my setting: display_startup_errors = on display_errors = On error_reporting = E_ALL | E_STRICT $b; function func ($name) { global $b; $b = 10; return $b; } $a =& ...
0
votes
2answers
275 views

Does Go language use Copy-on-write for strings

Does Go language use Copy-on-write for strings as in Java? I.e. if I pass a string by value to a method and never change it will this allocate memory and copy the string (which will be time ...
1
vote
2answers
98 views

To what granularity are expressions in function call parameters interleaved?

I would like to fully understand what is exactly specified about how function call parameters are interleaved. It seems to me to have many implications. Take the following example: void ...
1
vote
4answers
69 views

How do I get the underlying static array out of a CopyOnWriteArrayList in Java?

I have a class which maintains a list of features of the class. These features change infrequently compared to the reads. The reads are almost always iterations through the feature list. Because of ...
1
vote
5answers
326 views

Does Python use copy-on-write for copies of lists?

Suppose I copy an existing list: existing_list = [ 1, 2, 3 ]; copied_list = existing_list[:] ... copied_list[2] = 'a' // COW happens here [Some edits] I heard that Python uses copy-on-write when ...
1
vote
1answer
163 views

return const auto object — and Qt implicit sharing

So it is known this code is not sensical: const int foo() { int n = // do computation...; return n; } Because what meaning is to return "const int" when it is copied anyway? But with classes ...
4
votes
2answers
546 views

Why the address of variable of child process and parent process is same

Here is my code int main() { pid_t pid; int y = 3; if ( (pid = fork()) <0 ) return -1;; if( pid == 0 ) /* child */ { printf(" before: %d %p\n", y, &y ); y *= 10; ...
5
votes
3answers
426 views

Does deepcopy use copy-on-write?

I wonder if the python interpreter applies copy on write strategy when doing a deepcopy on mutable objects. Also, I'd like to know if the deepcopy is performed also on nonmutable object (that would ...
5
votes
2answers
841 views

Confusion about Copy-On-Write and shared_ptr

I have searched the web and read through the Boost documentation about shared_ptr. There is a response on SO that says that shared_ptr for Copy-On-Write (COW) sucks and that TR! has removed it from ...
1
vote
3answers
369 views

sharing address space versus duplicating the page table entries

Before copy on write (COW), when it says that the parent and child process share the same address space, it means that they share the same code segment, data segment, heap and stack right? If the ...
0
votes
4answers
1k views

remove elements from CopyOnWriteArrayList

I am getting an exception when I try to remove elements from CopyOnWriteArrayList using an iterator. I have noticed that it is documented Element-changing operations on iterators themselves ...
0
votes
1answer
2k views

std::string copy-on-write implementation thread safety [duplicate]

Possible Duplicates: C++: std::string in a multi-threaded program Is std::string thead-safe with gcc 4.3? Hello all, Suppose that we are passing a reference to object to the thread ...
2
votes
2answers
368 views

Object roll-back, copy-on-write, versioned proxy etc in Python

Premise: Given a Python object obj, I want to pass it along to some random function, and, when the function is done, I need the option to reset obj to it's original state. Additionally, no actual ...
3
votes
2answers
301 views

Does all memory flagged as copy-on-write get copied after a single change to one piece of the data?

My question is, perhaps, a poorly worded one and stems from my amateurish understanding of memory management. My concern is this: I have a Perl script that forks many times. As I understand from the ...
0
votes
2answers
422 views

disable copy-on-write(COW) on some memory pages when doing fork()

When a parent process forks a child process (under linux), I want to copy some of the memory pages in parent process to the address space of child process right at the beginning, which means, no need ...
14
votes
7answers
1k views

Which string classes to use in C++?

we have a multi-threaded desktop application in C++ (MFC). Currently developers use either CString or std::string, probably depending on their mood. So we'd like to choose a single implementation ...
6
votes
1answer
2k views

Implicit Sharing

I am building a game engine library in C++. A little while back I was using Qt to build an application and was rather fascinated with its use of Implicit Sharing. I am wondering if anybody could ...
3
votes
2answers
922 views

Programmatically determine if std::string uses Copy-On-Write (COW) mechanism

Following up on the discussion from this question, I was wondering how does one using native C++ determine programmatically whether or not the std::string implementation they are using utilizes ...
4
votes
6answers
2k views

How to know whether a copy-on-write page is an actual copy?

When I create a copy-on-write mapping (a MAP_PRIVATE) using mmap, then some pages of this mapping will be copied as soon as I write to specific addresses. At a certain point in my program I would like ...

1 2