* Write the pipe to simulate an interrupt. */
| 134 | * Write the pipe to simulate an interrupt. |
| 135 | */ |
| 136 | static int |
| 137 | test_interrupt_trigger_interrupt(void) |
| 138 | { |
| 139 | if (write(pfds.writefd, "1", 1) < 0) |
| 140 | return -1; |
| 141 | |
| 142 | return 0; |
| 143 | } |
| 144 | |
| 145 | /** |
| 146 | * Check if two interrupt handles are the same. |
no test coverage detected