Move procCmdlineBasenameOffset as cmdlineBasenameStart to global Process structure

This commit is contained in:
Benny Baumann
2021-04-10 11:18:08 +02:00
committed by BenBE
parent 6dc485dd20
commit 666f70c58c
4 changed files with 7 additions and 5 deletions

View File

@ -105,6 +105,9 @@ typedef struct Process_ {
/* Offset in cmdline of the process basename */
int cmdlineBasenameOffset;
/* Start Offset in cmdline of the process basename */
int cmdlineBasenameStart;
/* The process' "command" name */
char *procComm;