6a4878cf16
does. * cygheap.cc (init_cheap): Don't specify a load address for the heap. It doesn't work on #!*& Windows 9x. (cygheap_init): Move GetUserName to memory_init. * dcrt0.cc (dll_crt0_1): Call new memory_init functin, eliminate call to heap_init. * heap.cc (heap_init): Improve error output. * heap.h: Correct some declarations. * shared.cc (mount_table_init): Remove. (memory_init): Renamed from shared_init. Reorganize to accomodate strange Windows 9x problems with cygheap/heap interaction. * shared_info.h: Rename shared_init to memory_init.
25 lines
682 B
C
25 lines
682 B
C
/* heap.h: Cygwin heap manager definitions.
|
|
|
|
Copyright 2000 Cygnus Solutions.
|
|
|
|
This file is part of Cygwin.
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
details. */
|
|
|
|
#include "perprocess.h"
|
|
|
|
/* Heap management. */
|
|
void heap_init ();
|
|
void malloc_init ();
|
|
|
|
#define inheap(s) (brk && ((char *) (s) >= (char *) brkbase) && ((char *) (s) <= (char *) brktop))
|
|
|
|
#define brksize ((char *) user_data->heaptop - (char *) user_data->heapbase)
|
|
#define brk (user_data->heapptr)
|
|
#define brkbase (user_data->heapbase)
|
|
#define brktop (user_data->heaptop)
|
|
#define brkchunk (cygwin_shared->heap_chunk_size ())
|
|
|