阅读量:0
在Linux系统中,getpid()
函数用于获取当前进程的进程ID(PID),而不是线程ID(TID)。要获取线程ID,应使用gettid()
函数。
以下是getpid()
和gettid()
函数的示例用法:
#include <stdio.h> #include <unistd.h> // for getpid() #include <sys/types.h> // for pid_t #include <sys/syscall.h> // for gettid() int main() { pid_t pid = getpid(); printf("Current process ID (PID) is: %d\n", pid); pid_t tid = syscall(SYS_gettid); printf("Current thread ID (TID) is: %d\n", tid); return 0; }
在这个示例中,我们首先使用getpid()
函数获取当前进程的PID,然后使用syscall(SYS_gettid)
调用获取当前线程的TID。请注意,SYS_gettid
系统调用是特定于Linux的,可能在其他操作系统上不可用。