Unsupported: Remark on expectation of username field update

This commit is contained in:
Benny Baumann 2021-06-18 20:43:48 +02:00 committed by BenBE
parent 4dce2db832
commit 07170aee4c
1 changed files with 3 additions and 2 deletions

View File

@ -65,12 +65,13 @@ void ProcessList_goThroughEntries(ProcessList* super, bool pauseProcessUpdate) {
proc->tty_nr = 0;
proc->tty_name = NULL;
proc->tpgid = 0;
proc->st_uid = 0;
proc->processor = 0;
proc->percent_cpu = 2.5;
proc->percent_mem = 2.5;
proc->user = "nobody";
proc->st_uid = 0;
proc->user = "nobody"; /* Update whenever proc->st_uid is changed */
proc->priority = 0;
proc->nice = 0;