[Mammoth] Move thread and process to the proc/ folder

This commit is contained in:
Drew Galbraith 2023-11-22 14:10:10 -08:00
parent 99a75a4a76
commit c42fb858ba
14 changed files with 11 additions and 13 deletions

View File

@ -4,12 +4,12 @@ add_library(mammoth STATIC
ipc/endpoint_server.cpp
ipc/port_client.cpp
ipc/port_server.cpp
proc/process.cpp
proc/thread.cpp
src/debug.cpp
src/init.cpp
src/memory_region.cpp
src/new.cpp
src/process.cpp
src/thread.cpp
sync/mutex.cpp
sync/semaphore.cpp
)

View File

@ -7,7 +7,7 @@
#include "mammoth/ipc/endpoint_client.h"
#include "mammoth/ipc/request_context.h"
#include "mammoth/ipc/response_context.h"
#include "mammoth/thread.h"
#include "mammoth/proc/thread.h"
class EndpointServer {
public:

View File

@ -1,4 +1,4 @@
#include "mammoth/process.h"
#include "proc/process.h"
#include <glacier/status/error.h>
#include <zcall.h>

View File

@ -1,4 +1,4 @@
#include "mammoth/thread.h"
#include "proc/thread.h"
#include <zcall.h>

View File

@ -2,7 +2,7 @@
#include <glacier/memory/unique_ptr.h>
#include <glacier/status/error_or.h>
#include <mammoth/thread.h>
#include <mammoth/proc/thread.h>
#include <ztypes.h>
#include "ahci/ahci.h"

View File

@ -2,7 +2,7 @@
#pragma once
#include <glacier/status/error_or.h>
#include <mammoth/thread.h>
#include <mammoth/proc/thread.h>
#include <ztypes.h>
#include "denali.yunq.h"

View File

@ -2,7 +2,7 @@
#pragma once
#include <glacier/status/error_or.h>
#include <mammoth/thread.h>
#include <mammoth/proc/thread.h>
#include <ztypes.h>
#include "victoriafalls.yunq.h"

View File

@ -2,7 +2,7 @@
#pragma once
#include <glacier/status/error_or.h>
#include <mammoth/thread.h>
#include <mammoth/proc/thread.h>
#include <ztypes.h>
#include "yellowstone.yunq.h"

View File

@ -3,7 +3,7 @@
#include <mammoth/debug.h>
#include <mammoth/init.h>
#include <mammoth/memory_region.h>
#include <mammoth/process.h>
#include <mammoth/proc/process.h>
#include <zcall.h>
#include <ztypes.h>

View File

@ -5,7 +5,6 @@
#include <mammoth/debug.h>
#include <mammoth/init.h>
#include <mammoth/memory_region.h>
#include <mammoth/process.h>
#include <stdlib.h>
#include <zcall.h>

View File

@ -5,7 +5,6 @@
#include <glacier/memory/unique_ptr.h>
#include <glacier/status/error_or.h>
#include <mammoth/sync/semaphore.h>
#include <mammoth/thread.h>
#include <victoriafalls/victoriafalls.yunq.client.h>
#include "hw/pcie.h"

View File

@ -2,7 +2,7 @@
#pragma once
#include <glacier/status/error_or.h>
#include <mammoth/thread.h>
#include <mammoth/proc/thread.h>
#include <ztypes.h>
#include "{{file}}.h"