This is part of the API, so no changing! */
| 38 | |
| 39 | /* This is part of the API, so no changing! */ |
| 40 | const char *wait_index_name(enum wait_index index) |
| 41 | { |
| 42 | switch (index) { |
| 43 | case WAIT_INDEX_CREATED: |
| 44 | case WAIT_INDEX_UPDATED: |
| 45 | case WAIT_INDEX_DELETED: |
| 46 | return index_names[index]; |
| 47 | } |
| 48 | abort(); |
| 49 | } |
| 50 | |
| 51 | const char *wait_subsystem_name(enum wait_subsystem subsystem) |
| 52 | { |
no test coverage detected