~kris/9p

9hist

ref: 2e8fd57dcdcfdee6467c48d030a10f4cff786954 9hist/gnot/lock.c -rw-r--r-- 811 bytes
2e8fd57d — David du Colombier Plan 9 from Bell Labs 1991-08-13 35 years ago
                                                                                
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
#include "u.h"
#include "lib.h"
#include "mem.h"
#include "dat.h"
#include "fns.h"
#include "errno.h"

#define PCOFF -1

void
lock(Lock *l)
{
	int i;

	/*
	 * Try the fast grab first
	 */
    	if(tas(&l->key) == 0){
		if(u && u->p)
			u->p->hasspin = 1;
		l->pc = ((ulong*)&l)[PCOFF];
		return;
	}
	for(i = 0; i < 1000; i++){
		sched();
    		if (tas(&l->key) == 0){
			if(u && u->p)
				u->p->hasspin = 1;
			l->pc = ((ulong*)&l)[PCOFF];
			return;
		}
	}
	i = l->key;
	l->key = 0;

	panic("lock loop 0x%lux key 0x%lux pc 0x%lux held by pc 0x%lux\n", l, i,
		((ulong*)&l)[PCOFF], l->pc);
}

int
canlock(Lock *l)
{
	if(tas(&l->key))
		return 0;
	l->pc = ((ulong*)&l)[PCOFF];
	if(u && u->p)
		u->p->hasspin = 1;
	return 1;
}

void
unlock(Lock *l)
{
	l->pc = 0;
	l->key = 0;
	if(u && u->p)
		u->p->hasspin = 0;
}