aboutsummaryrefslogtreecommitdiffstats
path: root/src/process.c
diff options
context:
space:
mode:
authorKarl Heuer1995-01-25 02:02:37 +0000
committerKarl Heuer1995-01-25 02:02:37 +0000
commit17d02632dd61ff1a42ac8461684f4dff5ecfc7cf (patch)
treeb071d2e47e7426965dc5aa9478fa25063f8f95a0 /src/process.c
parent38ee91fe2902952f1d822f23b0b37ab2ac07efd2 (diff)
downloademacs-17d02632dd61ff1a42ac8461684f4dff5ecfc7cf.tar.gz
emacs-17d02632dd61ff1a42ac8461684f4dff5ecfc7cf.zip
(process_tick, update_tick): Make non-static.
Diffstat (limited to 'src/process.c')
-rw-r--r--src/process.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/process.c b/src/process.c
index acd2d0b08fe..3f93cd807eb 100644
--- a/src/process.c
+++ b/src/process.c
@@ -196,11 +196,12 @@ static Lisp_Object Vprocess_connection_type;
196#endif 196#endif
197#endif /* SKTPAIR */ 197#endif /* SKTPAIR */
198 198
199/* These next two vars are non-static since sysdep.c uses them in the
200 emulation of `select'. */
199/* Number of events of change of status of a process. */ 201/* Number of events of change of status of a process. */
200static int process_tick; 202int process_tick;
201
202/* Number of events for which the user or sentinel has been notified. */ 203/* Number of events for which the user or sentinel has been notified. */
203static int update_tick; 204int update_tick;
204 205
205#include "sysselect.h" 206#include "sysselect.h"
206 207