library: eliminate a useless conditional in readproc.h
When #define QUICK_THREADS was introduced, for copying some task data for a child thread, one proc_t pad byte was used to mark, then later identify, those children. Later the QUICK_THREADS was recycled as FALSE_THREADS, and used for a different purpose, but a conditional in the header file erroneously remained. Now, it is gone! Reference(s): . Jul, 2016 - QUICK_THREADS become FALSE_THREADS commitc546d9dd44
. Aug, 2011 - QUICK_THREADS intruduced commitbb4f08ba29
Signed-off-by: Jim Warner <james.warner@comcast.net>
This commit is contained in:
parent
9aa09d8862
commit
b0bda71ac0
@ -35,11 +35,7 @@ typedef struct proc_t {
|
||||
ppid; // stat,status pid of parent process
|
||||
char
|
||||
state, // stat,status single-char code for process state (S=sleeping)
|
||||
#ifdef FALSE_THREADS
|
||||
pad_1, // n/a padding (psst, also used if multi-threaded)
|
||||
#else
|
||||
pad_1, // n/a padding
|
||||
#endif
|
||||
pad_2, // n/a padding
|
||||
pad_3; // n/a padding
|
||||
unsigned long long
|
||||
|
Loading…
Reference in New Issue
Block a user