From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cagney To: GDB Patches Subject: [patch] Zap more #ifdef HAVE_VFORK Date: Mon, 26 Mar 2001 08:45:00 -0000 Message-id: <3ABF722C.EDDEF9BC@cygnus.com> X-SW-Source: 2001-03/msg00467.html Missed this when re-fixing the autoconfed vfork() call. Andrew ? diffs Index: ChangeLog =================================================================== RCS file: /cvs/src/src/gdb/ChangeLog,v retrieving revision 1.1113 diff -p -r1.1113 ChangeLog *** ChangeLog 2001/03/26 12:25:30 1.1113 --- ChangeLog 2001/03/26 16:40:15 *************** *** 1,3 **** --- 1,8 ---- + 2001-03-26 Andrew Cagney + + * fork-child.c (clone_and_follow_inferior): Delete #ifdef + HAVE_VFORK. + 2001-03-26 Mark Kettenis * config/i386/tm-symmetry.h (PUSH_ARGUMENTS): #undef. Index: fork-child.c =================================================================== RCS file: /cvs/src/src/gdb/fork-child.c,v retrieving revision 1.10 diff -p -r1.10 fork-child.c *** fork-child.c 2001/03/23 22:48:44 1.10 --- fork-child.c 2001/03/26 16:40:16 *************** clone_and_follow_inferior (int child_pid *** 421,434 **** error ("error getting pipe for handoff semaphore"); /* Clone the debugger. */ - #ifdef HAVE_VFORK if (debug_fork) debugger_pid = fork (); else debugger_pid = vfork (); - #else - debugger_pid = fork (); - #endif if (debugger_pid < 0) perror_with_name ("fork"); --- 421,430 ---- >From ac131313@cygnus.com Mon Mar 26 09:41:00 2001 From: Andrew Cagney To: Elena Zannoni Cc: GDB Patches Subject: Re: [rfa] *read.c -Wuninitialized fixes Date: Mon, 26 Mar 2001 09:41:00 -0000 Message-id: <3ABF7F22.33B94C20@cygnus.com> References: <3A2206A3.EA2ACA96@cygnus.com> <3A220727.C4087391@cygnus.com> <15038.44723.24996.553357@kwikemart.cygnus.com> X-SW-Source: 2001-03/msg00468.html Content-length: 296 Elena Zannoni wrote: > > Better late than never..... > > Yes Ok. I committed this given it has been sitting there for sooo long.... Thanks! Hmm, with these two in I think it is possible to configure GDB with --enable-gdb-build-warnings=-Wuninitialized,-Werror. Just need to check. Andrew