blob: e4320f050c9f85fd83d1f0e06a32b05cddb40b9f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "stdio_impl.h"
#include "pthread_impl.h"
void __lockfile(FILE *f)
{
int spins;
if (f->owner < 0) return;
if (f->owner && f->owner == __pthread_self()->tid) {
while (f->lockcount == INT_MAX);
f->lockcount++;
return;
}
spins = 100000;
while (a_swap(&f->lock, 1))
if (spins) spins--, a_spin();
else syscall(SYS_sched_yield);
f->owner = __pthread_self()->tid;
f->lockcount = 1;
}
|