File: copythread.c

package info (click to toggle)
tra 20020816-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 1,696 kB
  • ctags: 2,623
  • sloc: ansic: 22,519; makefile: 406; asm: 269
file content (414 lines) | stat: -rw-r--r-- 6,363 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
#include "tra.h"

/*
 * Simple threads for C.  Each thread effectively runs on its
 * own private copy of the main system stack, so stack pointers
 * are only meaningful to the currently executing thread.
 *
 * There is only one thread run queue.  While there may be 
 * helper I/O procs, threads only run in the main proc.
 */

void
ABORT(void)
{
	*(uchar*)0 = 0;
}

/* ----------------- */
Label mainlabel;

static void swtch0(Ctxt*, Ctxt*);
static void swtch1(Ctxt*);
static void swtch2(Ctxt*);

/* the ABORT() calls keep smart compilers from optimizing the tail recursion */

static void
switchctxt(Ctxt *cur, Ctxt *nxt)
{
	/*
	 * save the current stack position and registers
	 * the first time through.  swtch0 won't return.
	 */
	if(setlabel(&cur->label)==0){
		swtch0(cur, nxt);
		ABORT();
	}
}

static void
swtch0(Ctxt *cur, Ctxt *nxt)
{
	uchar *lo, *hi;
	int n;

	/* save the stack for the current thread */
	lo = (uchar*)cur->label.sp;
	hi = (uchar*)mainlabel.sp;
	n = hi-lo;
	cur->stk = emalloc(n);
	memmove(cur->stk, lo, n);

	/* switch to the next thread */
	swtch1(nxt);
	ABORT();
}

static void
swtch1(Ctxt *nxt)
{
	uchar buf[64];	/* take up stack space */

	/* recurse until we're out of the area the new stack will occupy. */
	if(nxt->label.sp < (intptr)buf)
		swtch1(nxt);

	/* do the copy */
	swtch2(nxt);
	ABORT();
}

static void
swtch2(Ctxt *nxt)
{
	uchar *lo, *hi;
	int n;

	/* put the next stack in place */
	lo = (uchar*)nxt->label.sp;
	hi = (uchar*)mainlabel.sp;
	n = hi-lo;
	memmove(lo, nxt->stk, n);

	free(nxt->stk);
	nxt->stk = nil;

	/* hop to it */
	gotolabel(&nxt->label);
	ABORT();
}

/* ----------------- */
struct Thread
{
	Ctxt ctxt;
	void (*fn)(void*);
	void *arg;
	int moribund;
	void *chandata;

	Thread *nextq;
	Thread *nextall;
	Thread *nextchan;

	void *data;
};

static int runqwait;
static int threadfd[2];
Thread *allthread, **eallthread;
Thread *curthread;
static Thread *tsched;
static Thread *runq;
//static Thread **endrunq;
static Lock runqlock;
void threadmain(int argc, char **argv);
static Thread *runthread(void);

static void
schedthread(void *arg)
{
	Thread **l;
	USED(arg);

	for(;;){
		curthread = runthread();
		switchctxt(&tsched->ctxt, &curthread->ctxt);
		if(curthread->moribund){
			free(curthread->ctxt.stk);
			for(l=&allthread; *l; l=&(*l)->nextall){
				if(*l == curthread){
					*l = curthread->nextall;
					if(*l == nil)
						eallthread = l;
					break;
				}
			}
			free(curthread);
		}
		curthread = nil;
	}
}

void
threadsleep(void)
{
	switchctxt(&curthread->ctxt, &tsched->ctxt);
}

static Thread*
runthread(void)
{
	char c;
	Thread *t;

//print("runthread\n");
	for(;;){
		lock(&runqlock);
		t = runq;
		if(t)
			runq = t->nextq;
		else
			runqwait = 1;
//print("runthread t %p\n", t);
		unlock(&runqlock);
		if(t)
			break;
		if(read(threadfd[0], &c, 1) != 1)
			ABORT();
	}
	return t;
}

void
threadready(Thread *t)
{
	int dowake;

	dowake = 0;
	lock(&runqlock);
/*
	if(runq==nil)
		endrunq = &runq;
	t->nextq = nil;
	*endrunq = t;
*/
//print("threadready %p\n", t);
t->nextq = runq;
runq = t;
	if(runqwait){
		dowake = 1;
		runqwait = 0;
	}
//	endrunq = &t->nextq;
	unlock(&runqlock);
	if(dowake)
		write(threadfd[1], "c", 1);
}

void
yield(void)
{
	threadready(curthread);
	threadsleep();
}

void
threadexit(void)
{
	curthread->moribund = 1;
	threadsleep();
}

void**
threaddata(void)
{
	return &curthread->data;
}

static void
threadlaunch(void *arg)
{
	Thread *t;

	t = arg;
	t->fn(t->arg);
	threadexit();
}

static Thread*
allocthread(void (*fn)(void*), void *arg)
{
	Thread *t;

	t = emalloc(sizeof(*t));
	t->fn = fn;
	t->arg = arg;
	if(allthread == nil)
		eallthread = &allthread;
	*eallthread = t;
	t->nextall = nil;
	initctxt(&t->ctxt, threadlaunch, t);
	return t;
}

void
threadcreate(void (*fn)(void*), void *arg)
{
	threadready(allocthread(fn, arg));
}

int
main(int argc, char **argv)
{
	pipe(threadfd);
	setlabel(&mainlabel);	/* only used for stack pointer */

	curthread = emalloc(sizeof(Thread));
	tsched = allocthread(schedthread, nil);
	threadmain(argc, argv);	
	threadexit();
	exits(0);
	return 0;
}

/* ------ */

/*
 * Many-reader, many-writer channels.  This depends
 * on the round-robin nature of the thread run queue.
 */
struct Chan
{
	Thread *rd;
	Thread **erd;
	Thread *wr;
	Thread **ewr;
	void *a;
	int n;
	int working;
};

static void
chanmatch(Chan *c)
{
	if(c->wr && c->rd && !c->working){
		c->working = 1;
		threadready(c->wr);
	}
}

void
send(Chan *c, void *v)
{
	if(c->wr == nil)
		c->ewr = &c->wr;
	*c->ewr = curthread;
	c->ewr = &curthread->nextchan;
	curthread->nextchan = nil;

	chanmatch(c);
	threadsleep();
	/* woke: there is a reader */
	memmove(c->a, v, c->n);
	threadready(c->rd);
	threadsleep();
	/* woke: reader is done with our data */
}

void
recv(Chan *c, void *v)
{
	if(c->rd == nil)
		c->erd = &c->rd;
	*c->erd = curthread;
	c->erd = &curthread->nextchan;
	curthread->nextchan = nil;

	chanmatch(c);
	threadsleep();
	/* woke: a writer has written to c->a */
	memmove(v, c->a, c->n);
	threadready(c->wr);
	c->wr = c->wr->nextchan;
	c->rd = c->rd->nextchan;
	c->working = 0;
	chanmatch(c);
}

void
sendp(Chan *c, void *a)
{
	if(c->n != sizeof(void*))
		panic("bad arg to sendp: expected chan(%d) got chan(%d)", sizeof(void*), c->n);

	send(c, &a);
}

void
sendul(Chan *c, ulong u)
{
	if(c->n != sizeof(ulong))
		panic("bad arg to sendul: expected chan(%d) got chan(%d)", sizeof(ulong), c->n);

	send(c, &u);
}

void*
recvp(Chan *c)
{
	void *a;

	if(c->n != sizeof(void*))
		panic("bad arg to recvp: expected chan(%d) got chan(%d)", sizeof(void*), c->n);

	recv(c, &a);
	return a;
}

ulong
recvul(Chan *c)
{
	ulong u;

	if(c->n != sizeof(ulong))
		panic("bad arg to recvul: expected chan(%d) got chan(%d)", sizeof(ulong), c->n);

	recv(c, &u);
	return u;
}

Chan*
_chan(int n)
{
	Chan *c;

	c = emalloc(sizeof(Chan)+n);
	c->a = &c[1];
	c->n = n;
	setmalloctag(c, getcallerpc(&n));
	return c;
}

/* ------ */
#ifdef ASDF
typedef struct Rendez Rendez;
struct Rendez
{
	Thread *first;
	ulong val;
};

static ulong
rendez(Rendez *r, ulong v)
{
	ulong ret;

	if(r->first==nil){
		/* got here first */
		r->val = v;
		r->first = curthread;
		switchctxt(&curthread->ctxt, &tsched->ctxt);
		return r->val;
	}else{
		/* got here second */
		ret = r->val;
		r->val = v;
		threadready(r->first);
		yield();
		return ret;
	}
}
#endif /* ASDF */