summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSigrid Solveig Haflínudóttir <ftrvxmtrx@gmail.com>2021-06-20 14:54:20 +0000
committerSigrid Solveig Haflínudóttir <ftrvxmtrx@gmail.com>2021-06-20 14:54:20 +0000
commit340d157c401c78d26b4b1405b9bb50449facac85 (patch)
tree164670f4d7f13a278c8355b580e609157638eac0
parent57d95c73256176bfd5cd3ef003c062697435f9c2 (diff)
downloadplan9front-340d157c401c78d26b4b1405b9bb50449facac85.tar.xz
threadimpl: remove unused fields from Proc struct
-rw-r--r--sys/src/libthread/threadimpl.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/sys/src/libthread/threadimpl.h b/sys/src/libthread/threadimpl.h
index e3fe6e15f..4fb63317a 100644
--- a/sys/src/libthread/threadimpl.h
+++ b/sys/src/libthread/threadimpl.h
@@ -120,16 +120,9 @@ struct Proc
Tqueue ready; /* Runnable threads */
Lock readylock;
- char printbuf[Printsize];
- int blocked; /* In a rendezvous */
int pending; /* delayed note pending */
- int nonotes; /* delay notes */
- uint nextID; /* ID of most recently created thread */
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 */
char threadint; /* tag for threadexitsall() */
};