Modules/UDI - (minor) tiny fiddle to udic planning
[tpg/acess2.git] / AcessNative / acesskernel_src / include / arch.h
index 1e2be70..868a056 100644 (file)
@@ -28,6 +28,7 @@ typedef intptr_t      tPAddr;
 
 typedef        int     BOOL;
 
+extern void    exit(int status) __attribute__((noreturn));
 #define HALT_CPU()     exit(1)
 
 #include <stddef.h>
@@ -40,10 +41,11 @@ struct sShortSpinlock
 
 extern void    Threads_int_ShortLock(void **Ptr);
 extern void    Threads_int_ShortRel(void **Ptr);
+extern int     Threads_int_ShortHas(void **Ptr);
 
 #define SHORTLOCK(l)   Threads_int_ShortLock(&(l)->Mutex)
 #define SHORTREL(l)    Threads_int_ShortRel(&(l)->Mutex)
-#define CPU_HAS_LOCK(...)      0
+#define CPU_HAS_LOCK(l)        Threads_int_ShortHas(&(l)->Mutex)
 
 //#define      NUM_CFG_ENTRIES 10
 

UCC git Repository :: git.ucc.asn.au