diff options
author | Christopher Faylor <me@cgf.cx> | 2002-08-27 04:10:54 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-08-27 04:10:54 +0000 |
commit | 6d8bd861e2503d0ab3c3cb64016b50700236265b (patch) | |
tree | 653c392b174694dbac0b9056e4d87a75a2e864e1 /winsup/cygwin/cygheap.h | |
parent | 4854ee501ebdb755be22392f8552a05284263a65 (diff) | |
download | cygnal-6d8bd861e2503d0ab3c3cb64016b50700236265b.tar.gz cygnal-6d8bd861e2503d0ab3c3cb64016b50700236265b.tar.bz2 cygnal-6d8bd861e2503d0ab3c3cb64016b50700236265b.zip |
* child_info.h: Add _PROC_WHOOPS enum value.
(CURR_CHILD_INFO_MAGIC): Update.
(child_info::magic): Make 'long'.
* cygheap.h: Export _cygheap_start.
* cygheap.cc: Don't declare _cygheap_start.
* cygmagic: Use cksum to produce checksums. Append 'U' to end of checksum.
* dcrt0.cc (initial_env): Calculate sleep ms before reusing buffer.
(_dll_crt0): Detect cygheap mismatch as indicative of different cygwin version.
Set child_proc_info to NULL when _PROC_WHOOPS.
(multiple_cygwin_problem): If child_info specific problem, then set
child_proc_info type to _PROC_WHOOPS.
* shared_info.h (CURR_MOUNT_MAGIC): Update.
(CURR_SHARED_MAGIC): Ditto.
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 7cd5becbc..6f81eaa41 100644 --- a/winsup/cygwin/cygheap.h +++ b/winsup/cygwin/cygheap.h @@ -324,4 +324,5 @@ char *__stdcall cstrdup (const char *) __attribute__ ((regparm(1))); char *__stdcall cstrdup1 (const char *) __attribute__ ((regparm(1))); void __stdcall cfree_and_set (char *&, char * = NULL) __attribute__ ((regparm(2))); void __stdcall cygheap_init (); +extern DWORD _cygheap_start; } |