2023-05-29 00:32:54 -07:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2023-06-06 15:01:31 -07:00
|
|
|
#define Z_INVALID 0x0
|
2023-05-30 20:55:03 -07:00
|
|
|
|
2023-06-06 15:01:31 -07:00
|
|
|
#define ZC_WRITE 0x01
|
|
|
|
#define ZC_READ 0x02
|
2023-05-30 20:55:03 -07:00
|
|
|
|
2023-06-06 16:24:03 -07:00
|
|
|
// Process Calls.
|
2023-06-06 15:01:31 -07:00
|
|
|
#define Z_PROCESS_EXIT 0x01
|
|
|
|
#define Z_PROCESS_SPAWN 0x02
|
|
|
|
#define Z_PROCESS_START 0x03
|
|
|
|
|
|
|
|
#define ZC_PROC_SPAWN_PROC 0x100
|
|
|
|
#define ZC_PROC_SPAWN_THREAD 0x101
|
|
|
|
|
2023-06-06 16:24:03 -07:00
|
|
|
#define Z_INIT_PROC_SELF 0x1
|
2023-06-07 00:04:53 -07:00
|
|
|
#define Z_INIT_AS_SELF 0x2
|
2023-06-06 16:24:03 -07:00
|
|
|
|
|
|
|
// Thread Calls.
|
2023-06-06 15:01:31 -07:00
|
|
|
#define Z_THREAD_CREATE 0x10
|
|
|
|
#define Z_THREAD_START 0x11
|
|
|
|
#define Z_THREAD_EXIT 0x12
|
|
|
|
|
2023-06-07 00:04:53 -07:00
|
|
|
// Memory Calls
|
|
|
|
#define Z_ADDRESS_SPACE_MAP 0x21
|
|
|
|
#define Z_ADDRESS_SPACE_UNMAP 0x22
|
|
|
|
|
|
|
|
#define Z_MEMORY_OBJECT_CREATE 0x30
|
|
|
|
|
2023-06-06 16:24:03 -07:00
|
|
|
// Debugging Calls.
|
2023-06-06 15:01:31 -07:00
|
|
|
#define Z_DEBUG_PRINT 0x10000000
|
2023-05-29 00:32:54 -07:00
|
|
|
|
2023-06-07 00:04:53 -07:00
|
|
|
void ZProcessExit(uint64_t code);
|
2023-05-30 20:55:03 -07:00
|
|
|
|
2023-06-07 00:04:53 -07:00
|
|
|
[[nodiscard]] uint64_t ZProcessSpawn(uint64_t proc_cap, uint64_t* new_proc_cap,
|
|
|
|
uint64_t* new_as_cap);
|
2023-05-30 20:55:03 -07:00
|
|
|
|
2023-06-07 00:04:53 -07:00
|
|
|
// UNUSED for now, I think we can get away with just starting a thread.
|
|
|
|
[[nodiscard]] uint64_t ZProcessStart(uint64_t proc_cap, uint64_t thread_cap,
|
|
|
|
uint64_t entry, uint64_t arg1,
|
|
|
|
uint64_t arg2);
|
2023-06-06 16:24:03 -07:00
|
|
|
|
2023-06-07 00:04:53 -07:00
|
|
|
[[nodiscard]] uint64_t ZThreadCreate(uint64_t proc_cap, uint64_t* thread_cap);
|
2023-06-06 16:24:03 -07:00
|
|
|
|
2023-06-07 00:04:53 -07:00
|
|
|
[[nodiscard]] uint64_t ZThreadStart(uint64_t thread_cap, uint64_t entry,
|
|
|
|
uint64_t arg1, uint64_t arg2);
|
2023-06-06 16:24:03 -07:00
|
|
|
|
2023-06-07 00:04:53 -07:00
|
|
|
void ZThreadExit();
|
2023-06-06 16:24:03 -07:00
|
|
|
|
2023-06-07 00:04:53 -07:00
|
|
|
[[nodiscard]] uint64_t ZAddressSpaceMap(uint64_t as_cap, uint64_t offset,
|
|
|
|
uint64_t mem_cap, uint64_t* vaddr);
|
|
|
|
[[nodiscard]] uint64_t ZMemoryObjectCreate(uint64_t size, uint64_t* mem_cap);
|
2023-06-06 16:24:03 -07:00
|
|
|
|
2023-06-07 00:04:53 -07:00
|
|
|
[[nodiscard]] uint64_t ZDebug(const char* message);
|