Tagged Questions
The copy-on-write tag has no wiki summary.
13
votes
7answers
781 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 ...
9
votes
5answers
1k views
Why VC++ Strings are not reference counted?
STL standard do not require from std::string to be refcounted. But in fact most of C++
implementations provide refcounted, copy-on-write strings, allowing you passing
string by value as a primitive ...
8
votes
6answers
5k views
What is copy-on-write?
I would like to know what copy-on-write is and what it is used for? The term 'copy-on-write array' is mentioned several times in the Sun JDK tutorials but I didn't understand what it meant.
6
votes
5answers
293 views
Does StringBuilder become immutable after a call to ToString?
I distinctly remember from the early days of .NET that calling ToString on a StringBuilder used to provide the new string object (to be returned) with the internal char buffer used by StringBuilder. ...
5
votes
2answers
236 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 ...
5
votes
3answers
275 views
Why is there no boost::copy_on_write_ptr?
I just saw this nice copy-on-write pointer implementation. It looks pretty generic and useful, so my question is: Is such a class contained in any of the C++ toolkits (boost, loki, etc.)? If not, I'd ...
5
votes
4answers
2k views
How to implement Copy-on-Write?
Hey!
I want to implement a copy-on-write on my custom C++ String class, and I wonder how to...
I tried to implement some options, but they all turned out very inefficient.
Thank you guys :-)
4
votes
2answers
114 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;
...
4
votes
3answers
152 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 ...
4
votes
2answers
491 views
Purely functional data structures with copy-on-write?
I want to have the advantage of functional data structures (multiple versions of data that can share structure) but be able to modify it in an imperative style.
What I'm thinking about (and a ...
3
votes
2answers
148 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 ...
3
votes
6answers
561 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 ...
3
votes
2answers
623 views
Why does COW mmap fail with ENOMEM on (sparse) files larger than 4GB?
This happens on a 2.6.26-2-amd64 Linux kernel when trying to mmap a 5GB file with copy-on-write semantics ( PROT_READ | PROT_WRITE and MAP_PRIVATE). Mapping files smaller than 4GB or using only ...
3
votes
5answers
274 views
How can you tell if a memory page is marked as read-only?
When using copy-on-write semantics to share memory among processes, how can you test if a memory page is writable or if it is marked as read-only? Can this be done by calling a specific assembler ...
2
votes
3answers
72 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 ...
2
votes
1answer
1k 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 ...
2
votes
2answers
371 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 ...
1
vote
2answers
64 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
23 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
87 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
74 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 ...
1
vote
2answers
203 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 ...
0
votes
3answers
51 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
131 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 ...
0
votes
0answers
54 views
Any nice way to implement copy-on-write proxy?
Objects which promise immutability can contribute to storage efficiency by allowing references to be shared without defensive copying. Objects which allow mutation can contribute to execution ...
0
votes
3answers
116 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
216 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
593 views
std::string copy-on-write implementation thread safety [closed]
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 ...
0
votes
2answers
220 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 ...
0
votes
2answers
246 views
How to check if the block is present in a sparse file (for simple copy-on-write)?
How to get sparse block size and check if data is present at the given offset in sparse file in reiserfs/ext3 in Linux?
I want to use it to implement simple copy-on-write block device using FUSE.
Or ...