(...args)
| 467 | } |
| 468 | |
| 469 | syscall_ptr(...args) { |
| 470 | this.do_syscall(...args); |
| 471 | const retval = this._return_value; |
| 472 | return new Addr(retval[0], retval[1]); |
| 473 | } |
| 474 | |
| 475 | // syscall variants that throw an error on errno |
| 476 |
nothing calls this directly
no test coverage detected