1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2025-01-03 14:56:34 -05:00

add volatile keywords to a few variables

reset max_interval back to 0 on slave initialization

svn path=/icecast/trunk/icecast/; revision=8112
This commit is contained in:
oddsock 2004-10-27 03:29:56 +00:00
parent 82b8e2b626
commit f86d02bb58

View File

@ -62,8 +62,8 @@
static void *_slave_thread(void *arg); static void *_slave_thread(void *arg);
thread_type *_slave_thread_id; thread_type *_slave_thread_id;
static int slave_running = 0; static int slave_running = 0;
static unsigned int max_interval = 0; volatile static unsigned int max_interval = 0;
static int rescan_relays = 0; volatile static int rescan_relays = 0;
relay_server *relay_free (relay_server *relay) relay_server *relay_free (relay_server *relay)
{ {
@ -118,6 +118,7 @@ void slave_initialize(void)
return; return;
slave_running = 1; slave_running = 1;
max_interval = 0;
_slave_thread_id = thread_create("Slave Thread", _slave_thread, NULL, THREAD_ATTACHED); _slave_thread_id = thread_create("Slave Thread", _slave_thread, NULL, THREAD_ATTACHED);
} }