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

Function SigAddSet

util/system/sigset.h:39–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

37}
38
39inline int SigAddSet(sigset_t* set, int signo) {
40#if defined _unix_
41 return sigaddset(set, signo);
42#else
43 Y_UNUSED(set);
44 Y_UNUSED(signo);
45 return 0;
46#endif
47}
48
49inline int SigDelSet(sigset_t* set, int signo) {
50#if defined _unix_

Callers 1

Y_UNIT_TESTFunction · 0.85

Calls 1

Y_UNUSEDFunction · 0.85

Tested by

no test coverage detected