MCPcopy Create free account
hub / github.com/RT-Thread/rt-thread / _mask_unblock_fn

Function _mask_unblock_fn

components/lwp/lwp_signal.c:380–386  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

378}
379
380static lwp_sigset_t *_mask_unblock_fn(rt_thread_t thread, const lwp_sigset_t *sigset, lwp_sigset_t *new_set)
381{
382 lwp_sigset_t complement;
383 _signotsets(&complement, sigset);
384 _sigandsets(new_set, &thread->signal.sigset_mask, &complement);
385 return new_set;
386}
387
388static lwp_sigset_t *_mask_set_fn(rt_thread_t thread, const lwp_sigset_t *sigset, lwp_sigset_t *new_set)
389{

Callers

nothing calls this directly

Calls 2

_signotsetsFunction · 0.85
_sigandsetsFunction · 0.85

Tested by

no test coverage detected