diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2011-05-16 10:27:14 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2011-05-16 10:27:14 +0000 |
commit | 883ea27df0f7d9a5836feb493c35026381c55b2b (patch) | |
tree | 4052ab3e6d3e898136015d7d71200ec685666b32 /winsup/cygwin/wincap.cc | |
parent | 6d6cfa4840b66c2dc152e7eab915a8ac9c10ef71 (diff) | |
download | newlib-883ea27df0f7d9a5836feb493c35026381c55b2b.zip newlib-883ea27df0f7d9a5836feb493c35026381c55b2b.tar.gz newlib-883ea27df0f7d9a5836feb493c35026381c55b2b.tar.bz2 |
* heap.cc (heap_init): Rewrite initial heap allocation to use addresses
beyond 0x20000000. Explain why and how.
* shared.cc (shared_info::heap_slop_size): Remove.
* shared_info.h (class shared_info): Remove heap_slop_inited and
heap_slop members. Remove heap_slop_size declaration.
(CURR_SHARED_MAGIC): Update.
* wincap.cc: Throughout, drop heapslop.
* wincap.h (struct wincaps): Drop heapslop.
Diffstat (limited to 'winsup/cygwin/wincap.cc')
-rw-r--r-- | winsup/cygwin/wincap.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/winsup/cygwin/wincap.cc b/winsup/cygwin/wincap.cc index aac916b..b959d1e 100644 --- a/winsup/cygwin/wincap.cc +++ b/winsup/cygwin/wincap.cc @@ -24,7 +24,6 @@ details. */ #define wincap_minimal wincap_2000 wincaps wincap_2000 __attribute__((section (".cygwin_dll_common"), shared)) = { - heapslop:0x0, max_sys_priv:SE_MANAGE_VOLUME_PRIVILEGE, is_server:false, has_physical_mem_access:true, @@ -55,7 +54,6 @@ wincaps wincap_2000 __attribute__((section (".cygwin_dll_common"), shared)) = { }; wincaps wincap_2000sp4 __attribute__((section (".cygwin_dll_common"), shared)) = { - heapslop:0x0, max_sys_priv:SE_CREATE_GLOBAL_PRIVILEGE, is_server:false, has_physical_mem_access:true, @@ -86,7 +84,6 @@ wincaps wincap_2000sp4 __attribute__((section (".cygwin_dll_common"), shared)) = }; wincaps wincap_xp __attribute__((section (".cygwin_dll_common"), shared)) = { - heapslop:0x0, max_sys_priv:SE_MANAGE_VOLUME_PRIVILEGE, is_server:false, has_physical_mem_access:true, @@ -117,7 +114,6 @@ wincaps wincap_xp __attribute__((section (".cygwin_dll_common"), shared)) = { }; wincaps wincap_xpsp1 __attribute__((section (".cygwin_dll_common"), shared)) = { - heapslop:0x0, max_sys_priv:SE_MANAGE_VOLUME_PRIVILEGE, is_server:false, has_physical_mem_access:true, @@ -148,7 +144,6 @@ wincaps wincap_xpsp1 __attribute__((section (".cygwin_dll_common"), shared)) = { }; wincaps wincap_xpsp2 __attribute__((section (".cygwin_dll_common"), shared)) = { - heapslop:0x0, max_sys_priv:SE_CREATE_GLOBAL_PRIVILEGE, is_server:false, has_physical_mem_access:true, @@ -179,7 +174,6 @@ wincaps wincap_xpsp2 __attribute__((section (".cygwin_dll_common"), shared)) = { }; wincaps wincap_2003 __attribute__((section (".cygwin_dll_common"), shared)) = { - heapslop:0x4, max_sys_priv:SE_CREATE_GLOBAL_PRIVILEGE, is_server:false, has_physical_mem_access:false, @@ -210,7 +204,6 @@ wincaps wincap_2003 __attribute__((section (".cygwin_dll_common"), shared)) = { }; wincaps wincap_vista __attribute__((section (".cygwin_dll_common"), shared)) = { - heapslop:0x4, max_sys_priv:SE_CREATE_SYMBOLIC_LINK_PRIVILEGE, is_server:false, has_physical_mem_access:false, @@ -241,7 +234,6 @@ wincaps wincap_vista __attribute__((section (".cygwin_dll_common"), shared)) = { }; wincaps wincap_7 __attribute__((section (".cygwin_dll_common"), shared)) = { - heapslop:0x4, max_sys_priv:SE_CREATE_SYMBOLIC_LINK_PRIVILEGE, is_server:false, has_physical_mem_access:false, |