From 5d9a7c875abcd2b551804774e2331a16d47b4f54 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Thu, 24 Apr 2003 01:57:07 +0000 Subject: * fork.cc: Change SLOW_PID_REUSE to NO_SLOW_PID_REUSE and invert ifdef sense throughout. --- winsup/cygwin/fork.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'winsup/cygwin/fork.cc') diff --git a/winsup/cygwin/fork.cc b/winsup/cygwin/fork.cc index 45664ad6d..2435d95e3 100644 --- a/winsup/cygwin/fork.cc +++ b/winsup/cygwin/fork.cc @@ -325,11 +325,11 @@ fork_child (HANDLE& hParent, dll *&first_dll, bool& load_dlls) return 0; } -#ifdef SLOW_PID_REUSE +#ifndef NO_SLOW_PID_REUSE static void slow_pid_reuse (HANDLE h) { - static NO_COPY HANDLE last_fork_procs[8] = {0}; + static NO_COPY HANDLE last_fork_procs[4] = {0}; static NO_COPY unsigned nfork_procs = 0; if (nfork_procs >= (sizeof (last_fork_procs) / sizeof (last_fork_procs [0]))) @@ -538,7 +538,7 @@ fork_parent (HANDLE& hParent, dll *&first_dll, goto cleanup; } -#ifdef SLOW_PID_REUSE +#ifndef NO_SLOW_PID_REUSE slow_pid_reuse (pi.hProcess); #endif -- cgit v1.2.3