repo.or.cz
/
sbcl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
search_for_executable() fails to process last part of PATH if PATH does not end with ':'
[sbcl.git]
/
src
/
runtime
/
alpha-arch.h
blob
c3d82f7cce5ecb36a2e4a35a1111cacaba1da7fd
1
#ifndef _ALPHA_ARCH_H
2
#define _ALPHA_ARCH_H
3
4
5
static
inline
void
6
get_spinlock
(
lispobj
*
word
,
long
value
)
7
{
8
*
word
=
value
;
/* FIXME for threads */
9
}
10
11
static
inline
void
12
release_spinlock
(
lispobj
*
word
)
13
{
14
*
word
=
0
;
15
}
16
17
#define ARCH_HAS_FLOAT_REGISTERS
18
19
#endif
/* _ALPHA_ARCH_H */