os/cpu/i386/tasking.h

24 lines
330 B
C
Raw Normal View History

2019-02-11 09:30:28 -06:00
#ifndef INT_TASKING_H
#define INT_TASKING_H
#include <stdint.h>
typedef struct Task {
2019-05-11 10:11:28 -05:00
uint32_t esp;
uint32_t cr3;
char priv;
int errno;
uint32_t pid;
char** msg_store;
uint32_t* sender_store;
uint32_t msg_indx;
uint8_t rd;
uint8_t wr;
struct Task* next;
2019-02-11 09:30:28 -06:00
} Task;
2019-04-08 15:58:30 -05:00
int* tasking_get_errno_address();
2019-02-11 09:30:28 -06:00
#endif