os/sysroot/usr/include/tasking.h

13 lines
213 B
C
Raw Normal View History

2019-03-31 13:10:40 -05:00
#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);
void* get_msg(uint32_t* sender);
#endif