C Microkernel Realtime eXecutive
Realtime Operating System for Cortex-M based microcontrollers
 
Loading...
Searching...
No Matches
linux.h
1#pragma once
2
3#include <kernel/runtime.h>
4
17 entrypoint_t * entry_point;
18 void * entry_arg;
19};
20
21
31
void trigger_pendsv_if_needed()
Initiate thread switch sequence if it was requested.
Definition posix.c:76
Internal thread startup data structure.
Definition linux.h:15
int thread_id
CMRX thread ID.
Definition linux.h:16
void * entry_arg
argument to the entry function
Definition linux.h:18
entrypoint_t * entry_point
thread entry function as CMRX userspace sees it
Definition linux.h:17