summaryrefslogblamecommitdiffstats
path: root/usr/tasking.h
blob: 4b119999016c88473477dd86ebc20fe9a4224239 (plain) (tree)
1
2
3
4
5
6
7
8
9




                        

                       
 
           
 
                      


                  

                         

  
                                 


                         


                                           
                                                       

      
#ifndef JOVE_TASKING_H
#define JOVE_TASKING_H 1

#include <stddef.h>
#include <stdint.h>
#include "sys/types.h"
#include "mem/memory.h"

struct Task
{
    struct Task *next;
    tid_t id;
    uintptr_t kbp;
    size_t perm;

    page_directory_t *pd;
};

extern struct Task *task_current;

void tasking_setup(void);

struct Task *task_new(struct Task *parent);
struct Task *task_get(tid_t id);

void task_perm_release(struct Task *task, size_t mask);

#endif