diff options
author | Christopher Faylor <me@cgf.cx> | 2005-08-24 04:38:39 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-08-24 04:38:39 +0000 |
commit | 14c4d65ef1240b1c18db06c3030b4e0830b0c701 (patch) | |
tree | 0a651de83d4520bb1c08dd334792733560733975 /winsup/cygwin/cygheap.h | |
parent | db7f135b03afa5f8ee870f87d1727d69dade30ce (diff) | |
download | cygnal-14c4d65ef1240b1c18db06c3030b4e0830b0c701.tar.gz cygnal-14c4d65ef1240b1c18db06c3030b4e0830b0c701.tar.bz2 cygnal-14c4d65ef1240b1c18db06c3030b4e0830b0c701.zip |
* cygheap.h (cygheap_types): Add HEAP_COMMUNE.
* fhandler_proc.cc: Use cygheap rather than user heap for allocation of filebuf
throughout.
* fhandler_registry.cc: Ditto.
* fhandler_virtual.cc: Ditto.
* fhandler_process.cc: Ditto.
(get_mem_values): Use malloc/realloc/free rather than new.
* pinfo.cc (_pinfo::commune_send): Allocate on cygwin heap rather than user
heap. Avoid calling ReadFile when correct number of characters have been read
or suffer buffer corruption.
(_pinfo::fd): Allocate on cygwin heap rather than user heap.
(_pinfo::fds): Ditto.
(_pinfo::root): Ditto.
(_pinfo::cwd): Ditto.
(_pinfo::cmdline): Ditto.
* devices.h (FH_DEV): New define.
* devices.in: Detect lone /dev.
* devices.cc: Regenerate.
* path.cc (path_conv::check): Treat FH_DEV as a special case.
Diffstat (limited to 'winsup/cygwin/cygheap.h')
-rw-r--r-- | winsup/cygwin/cygheap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/winsup/cygwin/cygheap.h b/winsup/cygwin/cygheap.h index 3b319d094..e5ce58f4d 100644 --- a/winsup/cygwin/cygheap.h +++ b/winsup/cygwin/cygheap.h @@ -20,6 +20,7 @@ enum cygheap_types HEAP_SIGS, HEAP_ARCHETYPES, HEAP_TLS, + HEAP_COMMUNE, HEAP_1_START, HEAP_1_HOOK, HEAP_1_STR, |