1.0.23.59: bug 3b has been fixed a while now
[sbcl/tcr.git] / src / runtime / ppc-arch.h
blobbe871d8c3e7055ceedf902f177bc1ae621217498
1 #ifndef _PPC_ARCH_H
2 #define _PPC_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;
17 #define ARCH_HAS_LINK_REGISTER
19 extern void ppc_flush_icache(os_vm_address_t address, os_vm_size_t length);
21 #endif /* _PPC_ARCH_H */