MCPcopy Create free account
hub / github.com/GamerHack/GamerHack.github.io / do_syscall

Method do_syscall

g2all/700/module/chain.js:433–446  ·  view source on GitHub ↗
(...args)

Source from the content-addressed store, hash-verified

431 }
432
433 do_syscall(...args) {
434 if (this.position) {
435 throw Error("chain not empty");
436 }
437 try {
438 this.push_syscall(...args);
439 this.push_get_retval();
440 this.push_get_errno();
441 this.push_end();
442 this.run();
443 } finally {
444 this.reset();
445 }
446 }
447
448 syscall_void(...args) {
449 this.do_syscall(...args);

Callers 4

syscall_voidMethod · 0.95
syscall_intMethod · 0.95
syscallMethod · 0.95
syscall_ptrMethod · 0.95

Calls 6

push_syscallMethod · 0.95
push_get_retvalMethod · 0.95
push_get_errnoMethod · 0.95
push_endMethod · 0.95
runMethod · 0.95
resetMethod · 0.95

Tested by

no test coverage detected