Preliminary work towards threads on win32
[sbcl.git] / src / runtime / hppa-arch.h
blob58cecc23edbed2b1d42fb52c82e5c972203edd06
1 #ifndef _HPPA_ARCH_H
2 #define _HPPA_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_NPC_REGISTER
19 #endif /* _HPPA_ARCH_H */