summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAlan Coopersmith <Alan.Coopersmith@sun.com>2005-07-16 20:52:25 +0000
committerAlan Coopersmith <Alan.Coopersmith@sun.com>2005-07-16 20:52:25 +0000
commit2dd92fea669cdd34b15cf75455ca7766b5cf9c93 (patch)
tree18ef26434bfc612d4dc32ad950ab4b4a96e50bd1 /include
parentf638b9c31aab9b90b8b9b4dbea79f8a588037498 (diff)
Mark variables modified in signal handlers as volatile (part of Sun bug idXORG-6_8_99_16
Diffstat (limited to 'include')
-rw-r--r--include/globals.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/globals.h b/include/globals.h
index 650bb55..678a7d9 100644
--- a/include/globals.h
+++ b/include/globals.h
@@ -60,8 +60,8 @@ extern int currentMaxClients;
extern long MaxClients;
extern int serverGeneration;
-extern char isItTimeToYield;
-extern char dispatchException;
+extern volatile char isItTimeToYield;
+extern volatile char dispatchException;
extern int argcGlobal;
extern char **argvGlobal;