threadimpl: remove unused fields from Proc struct
This commit is contained in:
parent
57d95c7325
commit
340d157c40
1 changed files with 0 additions and 7 deletions
|
@ -120,16 +120,9 @@ struct Proc
|
||||||
Tqueue ready; /* Runnable threads */
|
Tqueue ready; /* Runnable threads */
|
||||||
Lock readylock;
|
Lock readylock;
|
||||||
|
|
||||||
char printbuf[Printsize];
|
|
||||||
int blocked; /* In a rendezvous */
|
|
||||||
int pending; /* delayed note pending */
|
int pending; /* delayed note pending */
|
||||||
int nonotes; /* delay notes */
|
|
||||||
uint nextID; /* ID of most recently created thread */
|
|
||||||
Proc *next; /* linked list of Procs */
|
Proc *next; /* linked list of Procs */
|
||||||
|
|
||||||
void *arg; /* passed between shared and unshared stk */
|
|
||||||
char str[ERRMAX]; /* used by threadexits to avoid malloc */
|
|
||||||
|
|
||||||
void* udata; /* User per-proc data pointer */
|
void* udata; /* User per-proc data pointer */
|
||||||
char threadint; /* tag for threadexitsall() */
|
char threadint; /* tag for threadexitsall() */
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue