blob: da18f8100a4ca5ed9ea8dad5401775c034ac301c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef UTIL_LOCK_H
#define UTIL_LOCK_H
struct Lock {
unsigned long pid;
} __attribute__((packed, aligned(4)));
void lock(struct Lock* l);
void unlock(struct Lock* l);
#endif
|