(...args)
| 456 | } |
| 457 | |
| 458 | syscall(...args) { |
| 459 | this.do_syscall(...args); |
| 460 | const retval = this._return_value; |
| 461 | return new Int(retval[0], retval[1]); |
| 462 | } |
| 463 | |
| 464 | syscall_ptr(...args) { |
| 465 | this.do_syscall(...args); |
nothing calls this directly
no test coverage detected