Commit cba69596 authored by Diederik de Groot's avatar Diederik de Groot
Browse files

Fix: TreeView

parent 49af12e7
......@@ -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
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment