X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fppc-arch.h;h=cbaa670af89b6b20d4ae797b803aa1135b1616bb;hb=4ed3f0d08c3a57a6762018d9622f253ab9d0f2b6;hp=b43e78e250b9c9e9ecc1a8bfd6d12ae1313f5e4b;hpb=c1b4849c95bad4f3535fba2b9307fd37e15bcf6d;p=sbcl.git diff --git a/src/runtime/ppc-arch.h b/src/runtime/ppc-arch.h index b43e78e..cbaa670 100644 --- a/src/runtime/ppc-arch.h +++ b/src/runtime/ppc-arch.h @@ -1,6 +1,19 @@ #ifndef _PPC_ARCH_H #define _PPC_ARCH_H +static inline void +get_spinlock(lispobj *word,int value) +{ + *word=value; /* FIXME for threads */ +} + +static inline void +release_spinlock(lispobj *word) +{ + *word=0; +} + + #define ARCH_HAS_LINK_REGISTER #endif /* _PPC_ARCH_H */