From f004c1ade8d617a82cea2fe249434cccb47a2358 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Tue, 19 Mar 2024 13:03:52 -0400 Subject: rename abi to sys. better memory allocation --- tsk/tasking.h | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 tsk/tasking.h (limited to 'tsk/tasking.h') diff --git a/tsk/tasking.h b/tsk/tasking.h deleted file mode 100644 index b322682..0000000 --- a/tsk/tasking.h +++ /dev/null @@ -1,27 +0,0 @@ -#ifndef JOVE_TASKING_H -#define JOVE_TASKING_H 1 - -#include -#include - -typedef size_t tid_t; - -struct Task -{ - struct Task *next; - tid_t id; - uintptr_t kbp; - size_t perm; -}; - -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_get_pd(struct Task *task); -void task_perm_release(struct Task *task, size_t mask); - -#endif -- cgit v1.2.1