# HG changeset patch # User Karl Heuer <kwzh@gnu.org> # Date 790999357 0 # Node ID dcae4394587d09ff302037b3c83751b75bc9ed92 # Parent 8916eeebe86033faafa7d6a9cc909cda754c8c5b (process_tick, update_tick): Make non-static. diff -r 8916eeebe860 -r dcae4394587d src/process.c --- a/src/process.c Wed Jan 25 01:33:26 1995 +0000 +++ b/src/process.c Wed Jan 25 02:02:37 1995 +0000 @@ -196,11 +196,12 @@ #endif #endif /* SKTPAIR */ +/* These next two vars are non-static since sysdep.c uses them in the + emulation of `select'. */ /* Number of events of change of status of a process. */ -static int process_tick; - +int process_tick; /* Number of events for which the user or sentinel has been notified. */ -static int update_tick; +int update_tick; #include "sysselect.h"