Take pointer, not word count, as upper limit in verify_space()
[sbcl.git] / src / runtime / alpha-arch.h
blob872846e411c078524c44a7b5ccbdd6fc263b0647
1 #ifndef _ALPHA_ARCH_H
2 #define _ALPHA_ARCH_H
5 static inline void
6 get_spinlock(lispobj *word,long value)
8 *word=value; /* FIXME for threads */
11 static inline void
12 release_spinlock(lispobj *word)
14 *word=0;
17 #define ARCH_HAS_FLOAT_REGISTERS
18 #define ALIEN_STACK_GROWS_DOWNWARD
20 #endif /* _ALPHA_ARCH_H */