[Mammoth] Move thread and process to the proc/ folder
This commit is contained in:
parent
99a75a4a76
commit
c42fb858ba
|
@ -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
|
||||
)
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "mammoth/process.h"
|
||||
#include "proc/process.h"
|
||||
|
||||
#include <glacier/status/error.h>
|
||||
#include <zcall.h>
|
|
@ -1,4 +1,4 @@
|
|||
#include "mammoth/thread.h"
|
||||
#include "proc/thread.h"
|
||||
|
||||
#include <zcall.h>
|
||||
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue