Remove env vars
All checks were successful
Build ISO image / build-and-deploy (push) Successful in 1m29s
Build documentation / build-and-deploy (push) Successful in 53s

This commit is contained in:
2026-04-28 22:54:01 +02:00
parent fbf067d418
commit bf9e2bd222
10 changed files with 0 additions and 192 deletions

View File

@@ -89,14 +89,6 @@ int create_volume(const char* key, int fs_type, const char* device_key) {
return (int)do_syscall(SYS_CREATE_VOLUME, key, fs_type, device_key);
}
int env_set(int pgid, const char* key, void* buffer, size_t len) {
return (int)do_syscall(SYS_ENV_SET, pgid, key, buffer, len);
}
int env_get(int pgid, const char* key, void* buffer, size_t len) {
return (int)do_syscall(SYS_ENV_GET, pgid, key, buffer, len);
}
int exec_partial(const char* volume, const char* path, const char* cmdline) {
return (int)do_syscall(SYS_EXEC_PARTIAL, volume, path, cmdline);
}