repo.or.cz
/
sbcl
/
tcr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
1.0.23.59: bug 3b has been fixed a while now
[sbcl/tcr.git]
/
src
/
runtime
/
sparc-arch.h
blob
6a7b52e6ca56ea8646d9c33f2d7ecca1654a5337
1
#ifndef _SPARC_ARCH_H
2
#define _SPARC_ARCH_H
3
4
static
inline
void
5
get_spinlock
(
lispobj
*
word
,
long
value
)
6
{
7
*
word
=
value
;
/* FIXME for threads */
8
}
9
10
static
inline
void
11
release_spinlock
(
lispobj
*
word
)
12
{
13
*
word
=
0
;
14
}
15
16
#define ARCH_HAS_NPC_REGISTER
17
18
#endif
/* _SPARC_ARCH_H */