name property
The process name, as displayed in utilities like top
and ps
.
This name can be accessed through /proc/[pid]/comm
and changed with
prctl(PR_SET_NAME)
.
Implementation
core.String? name;
The process name, as displayed in utilities like top
and ps
.
This name can be accessed through /proc/[pid]/comm
and changed with
prctl(PR_SET_NAME)
.
core.String? name;