diff options
author | Christopher Faylor <me@cgf.cx> | 2004-03-21 17:41:40 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-03-21 17:41:40 +0000 |
commit | c795774c91303368f36369f7dac0d18aa25a5996 (patch) | |
tree | 8b670b7b945e6106fc46a72d294e20fdf05125c9 /winsup/cygwin/fhandler.h | |
parent | 7f5a71079f098a9b45328fb86b68442774323c1d (diff) | |
download | cygnal-c795774c91303368f36369f7dac0d18aa25a5996.tar.gz cygnal-c795774c91303368f36369f7dac0d18aa25a5996.tar.bz2 cygnal-c795774c91303368f36369f7dac0d18aa25a5996.zip |
* cygheap.cc (init_cheap): Add ability to specify minimal cygwin heap size when
debugging.
(_csbrk): Report error in allocation to stderr.
(ccalloc): Ditto.
* dtable.cc (dtable::find_fifo): Remove use of atoms.
* dtable.h (dtable::find_fifo): Ditto.
* fhandler.h (fhandler_fifo): Ditto.
* fhandler_fifo.cc (fhandler_fifo::fhandler_fifo): Ditto.
(fhandler_fifo::set_use): Ditto.
(fhandler_fifo::open_not_mine): Ditto.
(fhandler_fifo::open): Ditto.
* pinfo.cc (_pinfo::commune_recv): Ditto.
(_pinfo::commune_send): Ditto.
Diffstat (limited to 'winsup/cygwin/fhandler.h')
-rw-r--r-- | winsup/cygwin/fhandler.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h index 9d3a56ac0..26380e263 100644 --- a/winsup/cygwin/fhandler.h +++ b/winsup/cygwin/fhandler.h @@ -481,7 +481,6 @@ class fhandler_fifo: public fhandler_pipe { HANDLE output_handle; HANDLE owner; // You can't have too many mutexes, now, can you? - ATOM upand; long read_use; long write_use; public: @@ -496,7 +495,6 @@ public: void set_use (); int dup (fhandler_base *child); bool is_slow () {return 1;} - ATOM& get_atom () {return upand;} }; class fhandler_dev_raw: public fhandler_base |