MCPcopy Index your code
hub / github.com/RustPython/RustPython / pthread_sigmask

Function pthread_sigmask

Lib/signal.py:70–72  ·  view source on GitHub ↗
(how, mask)

Source from the content-addressed store, hash-verified

68if '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
75if 'sigpending' in _globals:

Callers

nothing calls this directly

Calls 2

setFunction · 0.85
_int_to_enumFunction · 0.85

Tested by

no test coverage detected