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:
authorCorinna Vinschen <corinna@vinschen.de>2011-05-16 14:27:14 +0400
committerCorinna Vinschen <corinna@vinschen.de>2011-05-16 14:27:14 +0400
commit883ea27df0f7d9a5836feb493c35026381c55b2b (patch)
tree4052ab3e6d3e898136015d7d71200ec685666b32 /winsup/cygwin/shared_info.h
parent6d6cfa4840b66c2dc152e7eab915a8ac9c10ef71 (diff)
* 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/shared_info.h')
-rw-r--r--winsup/cygwin/shared_info.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/winsup/cygwin/shared_info.h b/winsup/cygwin/shared_info.h
index 5a083f8fa..feb8ff1da 100644
--- a/winsup/cygwin/shared_info.h
+++ b/winsup/cygwin/shared_info.h
@@ -30,7 +30,7 @@ public:
/* Data accessible to all tasks */
-#define CURR_SHARED_MAGIC 0x7f4db5d3U
+#define CURR_SHARED_MAGIC 0xb41ae342U
#define USER_VERSION 1
#define CURR_USER_MAGIC 0x6112afb3U
@@ -44,8 +44,6 @@ class shared_info
DWORD cb;
public:
DWORD heap_chunk;
- bool heap_slop_inited;
- DWORD heap_slop;
DWORD sys_mount_table_counter;
tty_list tty;
LONG last_used_bindresvport;
@@ -55,7 +53,6 @@ class shared_info
void initialize ();
void init_obcaseinsensitive ();
unsigned heap_chunk_size ();
- unsigned heap_slop_size ();
static void create ();
};