Mercurial > emacs
changeset 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 | 8916eeebe860 |
children | c57d8bad186b |
files | src/process.c |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
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"