]> git.eshelyaron.com Git - emacs.git/commitdiff
(process_tick, update_tick): Make non-static.
authorKarl Heuer <kwzh@gnu.org>
Wed, 25 Jan 1995 02:02:37 +0000 (02:02 +0000)
committerKarl Heuer <kwzh@gnu.org>
Wed, 25 Jan 1995 02:02:37 +0000 (02:02 +0000)
src/process.c

index acd2d0b08fe6ebb2a18943542e7dc0776350b970..3f93cd807eb7341597e75994d10e7f9c1b7ca2ef 100644 (file)
@@ -196,11 +196,12 @@ static Lisp_Object Vprocess_connection_type;
 #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"