X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fppc-arch.h;h=0c5f964523d6ec46b76b9261bef642207c0c807b;hb=dc981e6c25bbc2abd48c8d48a424c6bd55e905bb;hp=b43e78e250b9c9e9ecc1a8bfd6d12ae1313f5e4b;hpb=c1b4849c95bad4f3535fba2b9307fd37e15bcf6d;p=sbcl.git diff --git a/src/runtime/ppc-arch.h b/src/runtime/ppc-arch.h index b43e78e..0c5f964 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,long value) +{ + *word=value; /* FIXME for threads */ +} + +static inline void +release_spinlock(lispobj *word) +{ + *word=0; +} + + #define ARCH_HAS_LINK_REGISTER #endif /* _PPC_ARCH_H */