Lines Matching defs:stp_t
21 struct stp_t {
24 struct stp_t *next; /* Next thread in the queue. */
36 stp_t t;
37 stp_t *tail;
71 static stp_t *
74 stp_t *t;
89 stp_qput (stp_q_t *q, stp_t *t)
101 static stp_t stp_global_main; /* Thread for the process. */
102 static stp_t *stp_global_curr; /* Currently-executing thread. */
120 stp_t *next;
141 stp_t *t;
144 t = xmalloc (sizeof(stp_t));
156 stp_global_curr = (stp_t *)pt;
166 stp_t *old, *newthread;
178 free (((stp_t *)old)->sto);
187 stp_t *old, *newthread;
199 ((stp_t *)old)->sp = sp;
200 stp_qput ((stp_q_t *)blockq, (stp_t *)old);