gettidのヘルプ・マニュアル
日本語 英語
gettid --help
man gettid
GETTID(2) Linux Programmer’s Manual GETTID(2)
名前
gettid - スレッドID を取得する
書式
#include
pid_t gettid(void);
説明
gettid() は呼び出し元のスレッド ID (TID) を返す。シングルスレッドのプロ
セスでは、スレッド ID は (getpid(2) が返すプロセス ID (PID) と等しい 。
マルチスレッドのプロセスでは、全てのスレッドは同じ PID を持つが、それぞ
れのスレッドは一意な TID を持つ。さ ら な る 詳 細 は 、 clone(2) の
CLONE_THREAD についての議論を参照すること。
返り値
成功の場合、呼び出し元のプロセスのスレッドID を返す。
エラー
このコールは常に成功する。
バージョン
gettid() システムコールは、カーネル 2.4.11 の Linux で初めて登場した。
準拠
gettid() は Linux 固有であり、移植を想定したプログラムでは使用すべきで
はない。
注意
glibc はこのシステムコールに対するラッパー関数を提 供 し て い な い 。
syscall(2) を使って呼び出すこと。
こ の シ ス テ ム コ ー ル が 返 す ス レ ッ ド ID は POSIX スレッド ID
(pthread_self(3) が返す曖昧な値) と同じものではない。
関連項目
clone(2), fork(2), getpid(2)
Linux 2008-04-14 GETTID(2)
GETTID(2) Linux Programmer’s Manual GETTID(2)
NAME
gettid - get thread identification
SYNOPSIS
#include
pid_t gettid(void);
DESCRIPTION
gettid() returns the caller’s thread ID (TID). In a single-threaded
process, the thread ID is equal to the process ID (PID, as returned by
getpid(2)). In a multithreaded process, all threads have the same PID,
but each one has a unique TID. For further details, see the discussion
of CLONE_THREAD in clone(2).
RETURN VALUE
On success, returns the thread ID of the calling process.
ERRORS
This call is always successful.
VERSIONS
The gettid() system call first appeared on Linux in kernel 2.4.11.
CONFORMING TO
gettid() is Linux-specific and should not be used in programs that are
intended to be portable.
NOTES
Glibc does not provide a wrapper for this system call; call it using
syscall(2).
The thread ID returned by this call is not the same thing as a POSIX
thread ID (i.e., the opaque value returned by pthread_self(3)).
SEE ALSO
clone(2), fork(2), getpid(2)
COLOPHON
This page is part of release 3.22 of the Linux man-pages project. A
description of the project, and information about reporting bugs, can
be found at http://www.kernel.org/doc/man-pages/.
Linux 2008-04-14 GETTID(2)