Leave a critical section. */
| 702 | |
| 703 | /* Leave a critical section. */ |
| 704 | static void |
| 705 | cs_leave (struct cs_status const *status) |
| 706 | { |
| 707 | if (status->valid) |
| 708 | { |
| 709 | /* Ignore failure when restoring the signal mask. */ |
| 710 | pthread_sigmask (SIG_SETMASK, &status->sigs, NULL); |
| 711 | } |
| 712 | } |
| 713 | |
| 714 | /* Possible states for a temp file. If compressed, the file's status |
| 715 | is unreaped or reaped, depending on whether 'sort' has waited for |
no outgoing calls
no test coverage detected