Refactor all Zion decls into one header

This commit is contained in:
Drew Galbraith 2023-06-17 01:45:53 -07:00
parent 7dcbbd671e
commit 5e99dbf7d1
25 changed files with 111 additions and 97 deletions

View file

@ -1,6 +1,6 @@
#include "object/channel.h"
#include "include/zerrors.h"
#include "include/ztypes.h"
#include "scheduler/scheduler.h"
Pair<RefPtr<Channel>, RefPtr<Channel>> Channel::CreateChannelPair() {

View file

@ -1,7 +1,7 @@
#pragma once
#include "capability/capability.h"
#include "include/zerrors.h"
#include "include/ztypes.h"
#include "lib/linked_list.h"
#include "lib/mutex.h"
#include "lib/pair.h"

View file

@ -2,7 +2,6 @@
#include "debug/debug.h"
#include "include/zcall.h"
#include "include/zinit.h"
#include "memory/paging_util.h"
#include "memory/physical_memory.h"
#include "object/thread.h"