(...args)
| 431 | } |
| 432 | |
| 433 | do_syscall(...args) { |
| 434 | if (this.position) { |
| 435 | throw Error("chain not empty"); |
| 436 | } |
| 437 | try { |
| 438 | this.push_syscall(...args); |
| 439 | this.push_get_retval(); |
| 440 | this.push_get_errno(); |
| 441 | this.push_end(); |
| 442 | this.run(); |
| 443 | } finally { |
| 444 | this.reset(); |
| 445 | } |
| 446 | } |
| 447 | |
| 448 | syscall_void(...args) { |
| 449 | this.do_syscall(...args); |
no test coverage detected