C Microkernel Realtime eXecutive
Realtime Operating System for Cortex-M based microcontrollers
 
Loading...
Searching...
No Matches
corelocal.h
1#pragma once
2
3#define __todo__ _Static_assert(1, "This needs to be filled-in")
4
5#define os_core_lock() __todo__
6#define os_core_unlock() __todo__
7
8// We don't support SMP yet, so these are no-op
9
10#define os_smp_lock()
11#define os_smp_unlock()
12
13#define coreid() 0
14
15#define OS_NUM_CORES 1
16
17void os_core_sleep(void);
void os_core_sleep()
Definition cortex.c:276