출처:https://developer.gnome.org/glib/unstable/glib-The-Main-Event-Loop.html
The GMainLoop data type represents a main event loop.
A GMainLoop is created with g_main_loop_new()
. After adding the initial event sources, g_main_loop_run()
is called. This continuously checks for new events from each of the event sources and dispatches them. Finally, the processing of an event from one of the sources leads to a call to g_main_loop_quit()
to exit the main loop, andg_main_loop_run()
returns.
'리눅스' 카테고리의 다른 글
samba 포트 포워딩 (0) | 2014.08.26 |
---|---|
파일 캐릭터 인코딩 바꾸기 (0) | 2014.08.02 |
Alien을 이용한 RPM 패키지 인스톨 (0) | 2014.07.02 |
sysroot (0) | 2014.03.14 |
[EXT4] noauto_da_alloc 옵션에 대해서 (0) | 2013.11.25 |