20 lines
453 B
TypeScript
20 lines
453 B
TypeScript
import { SysCallMapping } from "../../plugos/system";
|
|
import { Space } from "../spaces/space";
|
|
|
|
export function systemSyscalls(space: Space): SysCallMapping {
|
|
return {
|
|
"system.invokeFunction": async (
|
|
ctx,
|
|
env: string,
|
|
name: string,
|
|
...args: any[]
|
|
) => {
|
|
if (!ctx.plug) {
|
|
throw Error("No plug associated with context");
|
|
}
|
|
|
|
return space.invokeFunction(ctx.plug, env, name, args);
|
|
},
|
|
};
|
|
}
|