Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-09-06 20:53:48 +0400
committerChristopher Faylor <me@cgf.cx>2001-09-06 20:53:48 +0400
commit128f2650a5323f955322ed54f880a35d2c78ee46 (patch)
treecc8a2296ec059e2ca40c45bcded5d98f0f9f7915 /winsup/cygwin/how-cygheap-works.txt
parent12ca96df93e749050f2f4b791d17c5c599ab8069 (diff)
Another in the how-it-works series.
Diffstat (limited to 'winsup/cygwin/how-cygheap-works.txt')
-rw-r--r--winsup/cygwin/how-cygheap-works.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/winsup/cygwin/how-cygheap-works.txt b/winsup/cygwin/how-cygheap-works.txt
new file mode 100644
index 000000000..c60cdc340
--- /dev/null
+++ b/winsup/cygwin/how-cygheap-works.txt
@@ -0,0 +1,22 @@
+[Not yet complete]
+Cygwin has recently adopted something called the "cygwin heap". This is
+an internal heap that is inherited by forked/execed children. It
+consists of process specific information that should be inherited. So
+things like the file descriptor table, the current working directory,
+and the chroot value live there.
+
+The cygheap is also used to pass argv information to a child process.
+There is a problem here, though. If you allocate space for argv on the
+heap and then exec a process the child process (1) will happily use the
+space in the heap. But what happens when that process execs another
+process (2)? The space used by child process (1) still is being used in
+child process (2) but it is basically just a memory leak.
+
+To rectify this problem, memory used by child process 1 is tagged in
+such a way that child process 2 will know to delete it. This is in
+cygheap_fixup_in_child.
+
+The cygheap memory allocation functions are adapted from memory
+allocators developed by DJ Delorie. They are similar to early BSD
+malloc and are intended to be relatively lightweight and relatively
+fast.