| 67 | } |
| 68 | |
| 69 | inline int SigProcMask(int how, const sigset_t* set, sigset_t* oset) { |
| 70 | #if defined _unix_ |
| 71 | return pthread_sigmask(how, set, oset); |
| 72 | #else |
| 73 | Y_UNUSED(set); |
| 74 | Y_UNUSED(oset); |
| 75 | Y_UNUSED(how); |
| 76 | return 0; |
| 77 | #endif |
| 78 | } |
no test coverage detected