Mercurial > emacs
diff src/process.c @ 10548:dcae4394587d
(process_tick, update_tick): Make non-static.
| author | Karl Heuer <kwzh@gnu.org> |
|---|---|
| date | Wed, 25 Jan 1995 02:02:37 +0000 |
| parents | 68b8191091a7 |
| children | 54a76e0b97ec |
line wrap: on
line diff
--- 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"
