MCPcopy Create free account
hub / github.com/catboost/catboost / SigProcMask

Function SigProcMask

util/system/sigset.h:69–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69inline 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}

Callers 3

Y_UNIT_TESTFunction · 0.85
OnForkMethod · 0.85
RunMethod · 0.85

Calls 1

Y_UNUSEDFunction · 0.85

Tested by

no test coverage detected