task_struct
structure, which can be viewed here to manage threads.
ββββstruct task_struct {
ββββ ...
ββββ pid_t pid;
ββββ pid_t tgid;
ββββ ...
ββββ}
pid
variable correspond to a thread ID, and tgid
, meaning Thread Group ID corresponds to a process ID.
User layer | System call | Variable mapped in Kernel task_struct structure |
---|---|---|
Thread ID | pid_t gettid(void) | pid_t pid |
Process ID | pid_t getpid(void) | pid_t tgid |
LWP
represents the thread ID and NLWP
indicates the Number of LWPs. Additionally, the process systemd+ is multi-thread, with four threads having thread IDs 1195, 1358, 1359,and 1360.
ββββ$ ps -eLF -L
ββββF S UID PID PPID LWP C NLWP PRI NI ADDR SZ WCHAN STIME TTY TIME CMD
ββββ4 S syslog 1295 1 1295 0 4 80 0 - 55647 - 14:43 ? 00:00:00 /usr/sbin/rsyslogd -n -iNONE
ββββ1 S syslog 1295 1 1358 0 4 80 0 - 55647 - 14:43 ? 00:00:00 /usr/sbin/rsyslogd -n -iNONE
ββββ1 S syslog 1295 1 1359 0 4 80 0 - 55647 - 14:43 ? 00:00:00 /usr/sbin/rsyslogd -n -iNONE
ββββ1 S syslog 1295 1 1360 0 4 80 0 - 55647 - 14:43 ? 00:00:00 /usr/sbin/rsyslogd -n -iNONE
procfs
creates a subdirectory for each thread in the /proc/PID/task
path.
ββββ$ ll /proc/1295/task
ββββtotal 0
ββββdr-xr-xr-x 6 syslog syslog 0 3ζ 20 22:44 ./
ββββdr-xr-xr-x 9 syslog syslog 0 3ζ 20 14:43 ../
ββββdr-xr-xr-x 7 syslog syslog 0 3ζ 20 22:44 1295/
ββββdr-xr-xr-x 7 syslog syslog 0 3ζ 20 22:44 1358/
ββββdr-xr-xr-x 7 syslog syslog 0 3ζ 20 22:44 1359/
ββββdr-xr-xr-x 7 syslog syslog 0 3ζ 20 22:44 1360/