Fix: TreeView

This commit is contained in:
Diederik de Groot 2017-04-21 16:34:40 +02:00
parent 49af12e7c6
commit cba695961a
1 changed files with 2 additions and 1 deletions

View File

@ -445,7 +445,8 @@ void ProcessList_goThroughEntries(ProcessList* this) {
}
proc->ppid = kproc->kp_ppid; // parent process id
proc->tpgid = kproc->kp_tpgid; // tty process group id
proc->tgid = kproc->kp_lwp.kl_tid; // thread group id
//proc->tgid = kproc->kp_lwp.kl_tid; // thread group id
proc->tgid = kproc->kp_pid; // thread group id
proc->pgrp = kproc->kp_pgid; // process group id
proc->session = kproc->kp_sid;
proc->tty_nr = kproc->kp_tdev; // control terminal device number