(...args)
| 436 | } |
| 437 | |
| 438 | do_syscall(...args) { |
| 439 | if (this.position) { |
| 440 | throw Error('chain not empty'); |
| 441 | } |
| 442 | try { |
| 443 | this.push_syscall(...args); |
| 444 | this.push_get_retval(); |
| 445 | this.push_get_errno(); |
| 446 | this.push_end(); |
| 447 | this.run(); |
| 448 | } finally { |
| 449 | this.reset(); |
| 450 | } |
| 451 | } |
| 452 | |
| 453 | syscall_void(...args) { |
| 454 | this.do_syscall(...args); |
no test coverage detected