Added some incomplete code for process-switching

This commit is contained in:
2020-10-15 12:57:05 +00:00
parent d02bf34322
commit 852543ee19
13 changed files with 1507 additions and 312 deletions

View File

@ -45,17 +45,16 @@ HCL_EXPORT void hcl_vmprim_free_heap (
void* ptr
);
HCL_EXPORT void hcl_vmprim_gettime (
HCL_EXPORT void hcl_vmprim_vm_gettime (
hcl_t* hcl,
hcl_ntime_t* now
);
HCL_EXPORT void hcl_vmprim_sleep (
HCL_EXPORT int hcl_vmprim_vm_sleep (
hcl_t* hcl,
const hcl_ntime_t* dur
);
HCL_EXPORT void hcl_vmprim_dl_startup (
hcl_t* hcl
);