(how, mask)
| 68 | if 'pthread_sigmask' in _globals: |
| 69 | @_wraps(_signal.pthread_sigmask) |
| 70 | def pthread_sigmask(how, mask): |
| 71 | sigs_set = _signal.pthread_sigmask(how, mask) |
| 72 | return set(_int_to_enum(x, Signals) for x in sigs_set) |
| 73 | |
| 74 | |
| 75 | if 'sigpending' in _globals: |
nothing calls this directly
no test coverage detected