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

Method do_syscall

g2all/900/module/chain.js:438–451  ·  view source on GitHub ↗
(...args)

Source from the content-addressed store, hash-verified

436 }
437
438 do_syscall(...args) {
439 if (this.position) {
440 throw Error('chain not empty');
441 }
442 try {
443 this.push_syscall(...args);
444 this.push_get_retval();
445 this.push_get_errno();
446 this.push_end();
447 this.run();
448 } finally {
449 this.reset();
450 }
451 }
452
453 syscall_void(...args) {
454 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