diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2006-07-26 15:59:39 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2006-07-26 15:59:39 +0000 |
commit | 5faa48850f4e40c09fa9353b4e4cfbef43c7d9e0 (patch) | |
tree | 855583a1ee274969f7f04163cdc74d7294362ebd /winsup/cygwin/cygheap.h | |
parent | 020a7b4711d9e5ea0922eb940080e2c01933a08a (diff) | |
download | cygnal-5faa48850f4e40c09fa9353b4e4cfbef43c7d9e0.tar.gz cygnal-5faa48850f4e40c09fa9353b4e4cfbef43c7d9e0.tar.bz2 cygnal-5faa48850f4e40c09fa9353b4e4cfbef43c7d9e0.zip |
* cygheap.h (struct init_cygheap): Remove shared_h and mt_h members.
* fhandler_tape.cc (mt): Define as DLL shared area in
.cygwin_dll_common instead of as dynamically allocated area.
Change referencing throughout.
* mtinfo.h (mt_h): Remove entirely.
(mt): Remove extern declaration.
* shared.cc (cygwin_shared_area): New global cygwin_shared
variable located in .cygwin_dll_common.
(offsets): Define shared region addresses descending from
cygwin_shared_address.
(open_shared): Replace usage of SH_CYGWIN_SHARED by SH_USER_SHARED.
(memory_init): Set cygwin_shared just by pointing to cygwin_shared_area.
* shared_info.h (shared_locations): Remove SH_CYGWIN_SHARED and
SH_MTINFO.
(cygwin_shared_address): Define as DLL start address.
* tty.h (tty_min::tty_min): Remove constructor.
Diffstat (limited to 'winsup/cygwin/cygheap.h')
-rw-r--r-- | winsup/cygwin/cygheap.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/winsup/cygwin/cygheap.h b/winsup/cygwin/cygheap.h index 0afe1620d..35db5cad8 100644 --- a/winsup/cygwin/cygheap.h +++ b/winsup/cygwin/cygheap.h @@ -1,6 +1,6 @@ /* cygheap.h: Cygwin heap manager. - Copyright 2000, 2001, 2002, 2003, 2004, 2005 Red Hat, Inc. + Copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006 Red Hat, Inc. This file is part of Cygwin. @@ -279,9 +279,7 @@ struct init_cygheap cygheap_user user; user_heap_info user_heap; mode_t umask; - HANDLE shared_h; HANDLE console_h; - HANDLE mt_h; cwdstuff cwd; dtable fdtab; LUID luid[SE_NUM_PRIVS]; |