Implement sorting in tree mode

This commit is contained in:
Maxim Zhiburt
2020-11-18 14:19:42 +03:00
committed by BenBE
parent 4f7d48aa24
commit cf306ff86e
5 changed files with 237 additions and 67 deletions

View File

@ -109,6 +109,11 @@ typedef struct Process_ {
unsigned long int minflt;
unsigned long int majflt;
unsigned int tree_left;
unsigned int tree_right;
unsigned int tree_depth;
unsigned int tree_index;
} Process;
typedef struct ProcessFieldData_ {