13 lines
227 B
C
13 lines
227 B
C
#ifndef TASKING_H
|
|
#define TASKING_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void yield();
|
|
void createTask(void* task);
|
|
char isPrivleged(uint32_t pid);
|
|
void send_msg(uint32_t pid,void* msg,uint32_t size);
|
|
void* get_msg(uint32_t* sender);
|
|
|
|
#endif
|