mirror of https://github.com/xzeldon/htop.git
Cleanup some documentation
This commit is contained in:
parent
fcda517a67
commit
be60419630
|
@ -67,7 +67,7 @@ typedef struct Process_ {
|
||||||
pid_t pid;
|
pid_t pid;
|
||||||
pid_t ppid;
|
pid_t ppid;
|
||||||
pid_t tgid;
|
pid_t tgid;
|
||||||
char* comm; /* use Process_getCommand() for a decorated command line */
|
char* comm; /* use Process_getCommand() for Command actually displayed */
|
||||||
int commLen;
|
int commLen;
|
||||||
int indent;
|
int indent;
|
||||||
|
|
||||||
|
|
|
@ -351,7 +351,7 @@ void LinuxProcess_makeCommandStr(Process* this) {
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The field separtor "│" has been chosen such that it will not match any
|
/* The field separtor "│" has been chosen such that it will not match any
|
||||||
* valid search string used for sorting or filtering */
|
* valid string used for searching or filtering */
|
||||||
const char *SEPARATOR = CRT_treeStr[TREE_STR_VERT];
|
const char *SEPARATOR = CRT_treeStr[TREE_STR_VERT];
|
||||||
const int SEPARATOR_LEN = strlen(SEPARATOR);
|
const int SEPARATOR_LEN = strlen(SEPARATOR);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue