(...args)
| 450 | } |
| 451 | |
| 452 | syscall_int(...args) { |
| 453 | this.do_syscall(...args); |
| 454 | // x | 0 will always be a signed integer |
| 455 | return this._return_value[0] | 0; |
| 456 | } |
| 457 | |
| 458 | syscall(...args) { |
| 459 | this.do_syscall(...args); |
nothing calls this directly
no test coverage detected