Remove remnants of never-defined MALLOC_DEBUG and NEWVFORK

MALLOC_DEBUG and NEWVFORK haven't been defined since 2008 (4616253751).
Remove all references to tem.

winsup/cygwin/ChangeLog:
acconfig.h: delete
dcrt0.cc (dll_crt0_1): remove NEWVFORK code.
dcrt0.cc (do_exit): ditto.
debug.h: ditto.
dtable.h: ditto.
winsup.h: ditto.
globals.cc: ditto.
malloc_wrapper.cc: ditto.
malloc_wrapper.cc (malloc_init): ditto.
spawn.cc (spawnve): ditto.
syscalls.cc (setsid): ditto.

Signed-off-by: Peter Foley <pefoley2@pefoley.com>
This commit is contained in:
Peter Foley
2016-03-31 14:04:17 -04:00
committed by Corinna Vinschen
parent 02cfe00445
commit b259af51b8
10 changed files with 0 additions and 81 deletions

View File

@@ -25,9 +25,6 @@ class suffix_info;
class dtable
{
fhandler_base **fds;
#ifdef NEWVFORK
fhandler_base **fds_on_hold;
#endif
fhandler_base **archetypes;
unsigned narchetypes;
unsigned farchetype;
@@ -77,9 +74,6 @@ public:
void stdio_init ();
void get_debugger_info ();
void set_file_pointers_for_exec ();
#ifdef NEWVFORK
bool in_vfork_cleanup () {return fds_on_hold == fds;}
#endif
fhandler_base *find_archetype (device& dev);
fhandler_base **add_archetype ();
void delete_archetype (fhandler_base *);