explicit structure sharing in typed accessor function definitions
[sbcl.git] / src / runtime / sparc-arch.h
blobd49190cc59b851f0694b9efc24c6b6a1de28993d
1 #ifndef _SPARC_ARCH_H
2 #define _SPARC_ARCH_H
4 static inline void
5 get_spinlock(lispobj *word,long value)
7 *word=value; /* FIXME for threads */
10 static inline void
11 release_spinlock(lispobj *word)
13 *word=0;
16 #define ARCH_HAS_NPC_REGISTER
17 #define ALIEN_STACK_GROWS_DOWNWARD
19 #endif /* _SPARC_ARCH_H */