acadia/zion/syscall/thread.h

11 lines
275 B
C

#pragma once
#include <glacier/status/error.h>
#include "include/zcall.h"
glcr::ErrorCode ThreadCreate(ZThreadCreateReq* req);
glcr::ErrorCode ThreadStart(ZThreadStartReq* req);
glcr::ErrorCode ThreadExit(ZThreadExitReq*);
glcr::ErrorCode ThreadWait(ZThreadWaitReq* req);