- Timestamp:
- 2020-03-17T11:29:47Z (5 years ago)
- Branches:
- master
- Children:
- c479242
- Parents:
- 3a547ee
- Location:
- lib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
lib/events.h
r3a547ee rb15cbc4 70 70 G_MODULE_EXPORT void b_main_quit(); 71 71 72 G_MODULE_EXPORT void b_main_iteration(); 73 72 74 73 75 /* Add event handlers (for I/O or a timeout). The event handler will be called -
lib/events_glib.c
r3a547ee rb15cbc4 63 63 { 64 64 g_main_quit(loop); 65 } 66 67 void b_main_iteration() 68 { 69 g_main_iteration(FALSE); 70 event_debug("b_main_iteration()\n"); 65 71 } 66 72 -
lib/events_libevent.c
r3a547ee rb15cbc4 112 112 113 113 b_main_restart(); 114 } 115 116 void b_main_iteration() 117 { 118 event_base_loop(leh, EVLOOP_NONBLOCK); 119 event_debug("b_main_iteration()\n"); 114 120 } 115 121
Note: See TracChangeset
for help on using the changeset viewer.