!!! マルチスレッド 変数を共有して別々に動くプログラムのことで,軽量プロセスとも呼ばれる. 制御の流れを '''複数''' 作ることが可能. 本家の[Threadマニュアル|https://developer.gnome.org/gdk/stable/gdk-Threads.html] 簡単なプログラムが [リポジトリ|http://svn.cis.iwate-u.ac.jp/svn/csd/Examples/gtk2/thread/] にある * [[thread.c|http://svn.cis.iwate-u.ac.jp/svn/csd/Examples/gtk2/thread/]] ** 二つのスレッドが同じラベルに違う文字列を表示する例 * [[thread2.c|http://svn.cis.iwate-u.ac.jp/svn/csd/Examples/gtk2/thread/]] ** よりシンプルに !! 排他制御 複数のスレッド間では大域変数を共有する 排他的な操作のために下記を利用する * 共有ロック * gtk/gdk処理の排他制御 ! ロック変数の宣言 8< G_LOCK_DEFINE_STATIC (window_access); static volatile int window_access; >8 ! 排他制御(排他的にラベルのテキストを書き換える) * 乱数時間まって, * ロックをかけて, * 危険領域に入り, [gdk_threads_enter()|https://developer.gnome.org/gdk/stable/gdk-Threads.html#gdk-threads-enter] * 「排他的に行う処理」を行い * [gdk_flush|https://developer.gnome.org/gdk3/stable/gdk3-General.html#gdk-flush]で描画処理を終え, * 危険領域を抜け,[gdk_threads_leave()|https://developer.gnome.org/gdk/stable/gdk-Threads.html#gdk-threads-leave] * ロックを外す 8< sleep(g_random_int_range (1, 4)); G_LOCK(window_access); gdk_threads_enter(); gtk_label_set_text(GTK_LABEL(label), args); gdk_flush (); gdk_threads_leave(); G_UNLOCK(window_access); >8 !! スレッドの作成 [g_thread_create|https://developer.gnome.org/glib/stable/glib-Deprecated-Thread-APIs.html#g-thread-create] ! 例 8< if (!g_thread_create(argument_thread, "私はカモメ", FALSE, &error)) { g_printerr ("Failed to create YES thread: %s\n", error->message); return 1; } >8