タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

pthreadに関するysano2005のブックマーク (3)

  • Linux Tutorial: POSIX Threads

    POSIX thread (pthread) libraries The POSIX thread libraries are a standards based thread API for C/C++. It allows one to spawn a new concurrent process flow. It is most effective on multi-processor or multi-core systems where the process flow can be scheduled to run on another processor thus gaining speed through parallel or distributed processing. Threads require less overhead than "forking" or s

  • Tutorials | HPC @ LLNL

    Tutorials and Training Events For HPC related training materials beyond LC, see "Other HPC Training Resources" on the Training Events page. Interest Survey Interested in taking training but don't see your topic or upcoming training event? Fill out the survey on the bottom of the page! Training Materials Most training materials are kept online. They cover a range of topics related to parallel progr

  • ITmedia エンタープライズ:Native POSIX Thread Library for Linux

    特集 2003/06/27 00:48 更新 UNIX USER 2003年7月号特別企画より転載 Native POSIX Thread Library for Linux 新しいスレッドライブラリ「Native POSIX Thread Library for Linux」について、Red HatのUlrich DrepperとIngo Molnarが発表した論文の内容を簡単に紹介する。 今日、標準的に使われているLinuxスレッドの背後にある考え方は、「プロセス間のコンテクスト切り替えが、1つのカーネルスレッドで各ユーザースレッドを扱うのに十分なほど高速である」というものだ。スレッドレジスタは使用せず、局所的なメモリはスタック上に置かれる。 また、シグナルやそのほかの管理を正しく行うためには、管理スレッドが必要となる。カーネル内に利用できる同期プリミティブが存在しないため、実装にはシ

  • 1