git.ucc.asn.au
/
tpg
/
acess2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Usermode/libposix - Updates to get curl and netsurf compiled
[tpg/acess2.git]
/
Tools
/
nativelib
/
include
/
shortlock.h
1
/*
2
* Acess2 native library
3
* - By John Hodge (thePowersGang)
4
*
5
* shortlock.h
6
* - Short locks :)
7
*/
8
#ifndef _SHORTLOCK_H_
9
#define _SHORTLOCK_H_
10
11
typedef void *tShortSpinlock;
12
13
extern void SHORTLOCK(tShortSpinlock *Lock);
14
extern void SHORTREL(tShortSpinlock *m);
15
extern int CPU_HAS_LOCK(tShortSpinlock *m);
16
17
#endif
UCC
git Repository :: git.ucc.asn.au