X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fruntime%2Fppc-arch.h;h=be871d8c3e7055ceedf902f177bc1ae621217498;hb=9b1fade83db8453b75b8c7380eb12ce41b5b889c;hp=cbaa670af89b6b20d4ae797b803aa1135b1616bb;hpb=2378b4fe567a8fea78b1e4915b9497d8c18ca92f;p=sbcl.git diff --git a/src/runtime/ppc-arch.h b/src/runtime/ppc-arch.h index cbaa670..be871d8 100644 --- a/src/runtime/ppc-arch.h +++ b/src/runtime/ppc-arch.h @@ -1,10 +1,10 @@ #ifndef _PPC_ARCH_H #define _PPC_ARCH_H -static inline void -get_spinlock(lispobj *word,int value) +static inline void +get_spinlock(lispobj *word,long value) { - *word=value; /* FIXME for threads */ + *word=value; /* FIXME for threads */ } static inline void @@ -16,4 +16,6 @@ release_spinlock(lispobj *word) #define ARCH_HAS_LINK_REGISTER +extern void ppc_flush_icache(os_vm_address_t address, os_vm_size_t length); + #endif /* _PPC_ARCH_H */