[zion] Add a thread wait syscall
This commit is contained in:
parent
f0e8ce14a4
commit
36d82370c1
9 changed files with 45 additions and 8 deletions
|
|
@ -1,7 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
#include <glacier/status/error.h>
|
||||
|
||||
#include "include/zcall.h"
|
||||
|
||||
z_err_t ThreadCreate(ZThreadCreateReq* req);
|
||||
z_err_t ThreadStart(ZThreadStartReq* req);
|
||||
z_err_t ThreadExit(ZThreadExitReq*);
|
||||
glcr::ErrorCode ThreadCreate(ZThreadCreateReq* req);
|
||||
glcr::ErrorCode ThreadStart(ZThreadStartReq* req);
|
||||
glcr::ErrorCode ThreadExit(ZThreadExitReq*);
|
||||
glcr::ErrorCode ThreadWait(ZThreadWaitReq* req);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue