(...args)
| 455 | } |
| 456 | |
| 457 | syscall_int(...args) { |
| 458 | this.do_syscall(...args); |
| 459 | // x | 0 will always be a signed integer |
| 460 | return this._return_value[0] | 0; |
| 461 | } |
| 462 | |
| 463 | syscall(...args) { |
| 464 | this.do_syscall(...args); |
nothing calls this directly
no test coverage detected