Changes in / [a902ebb:9b3167b]
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
global.c
r0792d99 r219f52c 10 10 11 11 g_type_init(); 12 #if !GLIB_CHECK_VERSION(2, 31, 0)13 12 g_thread_init(NULL); 14 #endif15 13 16 14 owl_select_init(); … … 102 100 103 101 g->interrupt_count = 0; 104 #if GLIB_CHECK_VERSION(2, 31, 0)105 g_mutex_init(&g->interrupt_lock);106 #else107 102 g->interrupt_lock = g_mutex_new(); 108 #endif109 103 } 110 104 … … 905 899 } 906 900 907 static GMutex *owl_global_get_interrupt_lock(owl_global *g)908 {909 #if GLIB_CHECK_VERSION(2, 31, 0)910 return &g->interrupt_lock;911 #else912 return g->interrupt_lock;913 #endif914 }915 916 901 void owl_global_add_interrupt(owl_global *g) { 917 902 /* TODO: This can almost certainly be done with atomic 918 903 * operations. Whatever. */ 919 g_mutex_lock( owl_global_get_interrupt_lock(g));904 g_mutex_lock(g->interrupt_lock); 920 905 g->interrupt_count++; 921 g_mutex_unlock( owl_global_get_interrupt_lock(g));906 g_mutex_unlock(g->interrupt_lock); 922 907 } 923 908 924 909 bool owl_global_take_interrupt(owl_global *g) { 925 910 bool ans = false; 926 g_mutex_lock( owl_global_get_interrupt_lock(g));911 g_mutex_lock(g->interrupt_lock); 927 912 if (g->interrupt_count > 0) { 928 913 ans = true; 929 914 g->interrupt_count--; 930 915 } 931 g_mutex_unlock( owl_global_get_interrupt_lock(g));916 g_mutex_unlock(g->interrupt_lock); 932 917 return ans; 933 918 } -
logging.c
r0792d99 r0a9ffc5 436 436 void owl_log_init(void) 437 437 { 438 GError *error = NULL; 438 439 log_context = g_main_context_new(); 439 #if GLIB_CHECK_VERSION(2, 31, 0)440 logging_thread = g_thread_new("logging",441 owl_log_thread_func,442 NULL);443 #else444 GError *error = NULL;445 440 logging_thread = g_thread_create(owl_log_thread_func, 446 441 NULL, … … 453 448 exit(1); 454 449 } 455 #endif456 450 457 451 } -
owl.h
rcb124fc6 r219f52c 596 596 char *kill_buffer; 597 597 int interrupt_count; 598 #if GLIB_CHECK_VERSION(2, 31, 0)599 GMutex interrupt_lock;600 #else601 598 GMutex *interrupt_lock; 602 #endif603 599 } owl_global; 604 600
Note: See TracChangeset
for help on using the changeset viewer.