マルチスレッドのプログラミング

Solaris スレッドと POSIX スレッドの API の比較

Solaris スレッド API と POSIX スレッド (pthread) API は、どちらもアプリケーションソフトウェアに並列性を導入する手段です。どちらの API もそれ自体で完結したものですが、Solaris スレッドの関数と pthread の関数を同じプログラムの中で併用することもできます。

ただし、2 つの API は完全に一致しているわけではありません。Solaris スレッドは pthread にない関数をサポートしていて、pthread には Solaris インタフェースでサポートされない関数が含まれています。同じ関数については、機能が実質的に同じでも使用する引数が異なることがあります。

2 つの API を組み合わせて使用すれば、それぞれ他方にない機能を補い合うことができます。また、同じシステムで、Solaris スレッドだけを使用するアプリケーションを実行する一方で、pthread だけを使用するアプリケーションを実行することもできます。

API の主な相違点

Solaris スレッドと pthread は、API の動作や構文も非常によく似ています。主な相違点を表 9-1 に示します。

表 9-1 Solaris スレッドと pthread の相違点

Solaris スレッド (libthread) に固有

POSIX スレッド (libpthread) に固有

スレッド関数名の接頭辞が thr_ で、セマフォ関数名の接頭辞が sema_

スレッド関数名の接頭辞が pthread_ で、セマフォ関数名の接頭辞が sem_

読み取り / 書き込みロック 

属性オブジェクト (Solaris の多くの引数やフラグは pthread の属性オブジェクトと同等である)

デーモンスレッドが生成可能 

取り消しセマンティクス 

スレッドの停止と再開 

スケジューリング方針 

並行度の設定 (新しい LWP の要求) と並行度の取得 

 

関数比較表

表 9-2 は、Solaris スレッドの関数と pthread の関数を比較対照したものです。なお、Solaris スレッドの関数と pthread の関数が本質的に同じものとして並記されている場合でも、その引数は異なっていることがあります。

pthread または Solaris スレッドの側に相当するインタフェースがない場合は、「-」が記入されています。pthread 欄の項目で「POSIX 1003.4」または「POSIX.4」が付記されているものは、POSIX 規格のリアルタイムの仕様の一部で pthread の一部ではありません。

表 9-2 Solaris スレッドと POSIX pthread の比較

Solaris スレッド (libthread)

pthread (libpthread)

thr_create()

pthread_create()

thr_exit()

pthread_exit()

thr_join()

pthread_join()

thr_yield()

sched_yield() POSIX.4

thr_self()

pthread_self()

thr_kill()

pthread_kill()

thr_sigsetmask()

pthread_sigmask()

thr_setprio()

pthread_setschedparam()

thr_getprio()

pthread_getschedparam()

thr_setconcurrency()

thr_getconcurrency()

thr_suspend()

thr_continue()

thr_keycreate()

pthread_key_create()

pthread_key_delete()

thr_setspecific()

pthread_setspecific()

thr_getspecific()

pthread_getspecific()

pthread_once()

pthread_equal()

pthread_cancel()

pthread_testcancel()

pthread_cleanup_push()

pthread_cleanup_pop()

pthread_setcanceltype()

pthread_setcancelstate()

mutex_lock()

pthread_mutex_lock()

mutex_unlock()

pthread_mutex_unlock()

mutex_trylock()

pthread_mutex_trylock()

mutex_init()

pthread_mutex_init()

mutex_destroy()

pthread_mutex_destroy()

cond_wait()

pthread_cond_wait()

cond_timedwait()

pthread_cond_timedwait()

cond_signal()

pthread_cond_signal()

cond_broadcast()

pthread_cond_broadcast()

cond_init()

pthread_cond_init()

cond_destroy()

pthread_cond_destroy()

rwlock_init()

rwlock_destroy()

rw_rdlock()

rw_wrlock()

rw_unlock()

rw_tryrdlock()

rw_trywrlock()

sema_init()

sem_init() POSIX 1003.4

sema_destroy()

sem_destroy() POSIX 1003.4

sema_wait()

sem_wait() POSIX 1003.4

sema_post()

sem_post() POSIX 1003.4

sema_trywait()

sem_trywait() POSIX 1003.4

fork1()

fork()

pthread_atfork()

fork() (複数スレッドコピー)

pthread_mutexattr_init()

pthread_mutexattr_destroy()

cond_init()type() 引数

pthread_mutexattr_setpshared()

pthread_mutxattr_getpshared()

pthread_condattr_init()

pthread_condattr_destroy()

cond_init()type() 引数

pthread_condattr_setpshared()

pthread_condattr_getpshared()

pthread_attr_init()

pthread_attr_destroy()

thr_create() の THR_BOUND フラグ

pthread_attr_setscope()

pthread_attr_getscope()

thr_create()stack_size() 引数

pthread_attr_setstacksize()

pthread_attr_getstacksize()

thr_create()stack_addr() 引数

pthread_attr_setstackaddr()

pthread_attr_getstackaddr()

thr_create() の THR_DETACH フラグ

pthread_attr_setdetachstate()

pthread_attr_getdetachstate()

pthread_attr_setschedparam()

pthread_attr_getschedparam()

pthread_attr_setinheritsched()

pthread_attr_getinheritsched()

pthread_attr_setschedpolicy()

pthread_attr_getschedpolicy()

この章で説明する Solaris スレッドの関数を使用するには、リンクで Solaris スレッドライブラリ (-lthread) を指定しなければなりません。

Solaris スレッドと pthread で機能的にほとんど変わらない場合は (関数名と引数が違うとしても)、正しいインクルードファイルと関数プロトタイプを示した簡単な例を挙げているだけです。Solaris スレッドで戻り値が記述されていないものについては、『SunOS Reference Manual』の Section 3「Library Routines」から該当するページを探して、その関数の戻り値を調べてください。

Solaris 関連の関数の詳細は、pthread の関連マニュアルで類似した名前の関数を調べてください。

Solaris スレッドの関数で pthread にない機能をもつものについて、詳しく説明しています。