HomeSort by: relevance | last modified time | path
    Searched defs:masked (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/kern/
kern_sig.c 948 const bool masked = sigismember(mask, signo); local in function:trapsignal
949 if (caught && !masked) {
965 * If the signal is masked or ignored, then unmask it and
970 if (masked || ignored) {
1072 * Returns true if signal is ignored or masked for the specified LWP.
1092 int rv, masked; local in function:sigpost
1123 * SIGCONT can be masked, but if LWP is stopped, it needs restart.
1124 * Note: SIGKILL and SIGSTOP cannot be masked.
1126 masked = sigismember(&l->l_sigmask, sig);
1127 if (masked && ((prop & SA_CONT) == 0 || l->l_stat != LSSTOP))
    [all...]
  /src/sys/arch/aarch64/aarch64/
pmap.c 955 vm_prot_t masked; local in function:_pmap_pte_adjust_prot
958 masked = prot & refmod;
969 switch (masked & (VM_PROT_READ | VM_PROT_WRITE)) {

Completed in 25 milliseconds