Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Per Cederqvist
lyskom-server-ceder-1616-generations-topgit
Commits
d3dfdc1a
Commit
d3dfdc1a
authored
May 21, 1991
by
Per Cederqvist
Browse files
go_and_die and do_sync_db are volatile.
parent
22aaec41
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/server/connections.c
View file @
d3dfdc1a
...
...
@@ -41,8 +41,8 @@
ISCMCB
*
kom_server_mcb
=
NULL
;
Connection
*
active_connection
=
NULL
;
Bool
go_and_die
=
FALSE
;
Bool
do_sync_db
=
FALSE
;
volatile
Bool
go_and_die
=
FALSE
;
volatile
Bool
do_sync_db
=
FALSE
;
jmp_buf
parse_env
;
...
...
src/server/connections.h
View file @
d3dfdc1a
...
...
@@ -5,9 +5,9 @@
*/
extern
Bool
go_and_die
;
/* Set this to TRUE to kill the server. */
extern
Bool
do_sync_db
;
/* Set this to TRUE to force a sync via
signal. */
extern
volatile
Bool
go_and_die
;
/* Set this to TRUE to kill the server. */
extern
volatile
Bool
do_sync_db
;
/* Set this to TRUE to force a sync via
signal. */
#define CONN_MAGIC_ALLOC 0x18F4AE74
#define CONN_MAGIC_FREE 0x67A7B144
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment