Changeset 0792d99
- Timestamp:
- Oct 29, 2012, 11:18:51 PM (12 years ago)
- Branches:
- master, release-1.10
- Children:
- a90bd2f, c42a8d1, a902ebb
- Parents:
- cb124fc6
- git-author:
- Anders Kaseorg <andersk@mit.edu> (06/26/12 01:57:44)
- git-committer:
- Anders Kaseorg <andersk@mit.edu> (10/29/12 23:18:51)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
global.c
rcb124fc6 r0792d99 10 10 11 11 g_type_init(); 12 #if !GLIB_CHECK_VERSION(2, 31, 0) 12 13 g_thread_init(NULL); 14 #endif 13 15 14 16 owl_select_init(); -
logging.c
r0a9ffc5 r0792d99 436 436 void owl_log_init(void) 437 437 { 438 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 #else 438 444 GError *error = NULL; 439 log_context = g_main_context_new();440 445 logging_thread = g_thread_create(owl_log_thread_func, 441 446 NULL, … … 448 453 exit(1); 449 454 } 455 #endif 450 456 451 457 }
Note: See TracChangeset
for help on using the changeset viewer.