Move procComm and procExe to main Process structure

This commit is contained in:
Benny Baumann
2021-01-30 15:31:59 +01:00
committed by BenBE
parent 10790f0a54
commit d74e8b7554
5 changed files with 31 additions and 27 deletions

View File

@ -102,6 +102,12 @@ typedef struct Process_ {
*/
char* cmdline;
/* The process' "command" name */
char *procComm;
/* The main process executable */
char *procExe;
/* Offset in comm of the process basename */
int basenameOffset;