Home
last modified time | relevance | path

Searched refs:cstatus (Results 1 – 8 of 8) sorted by relevance

/freebsd/tools/regression/sysvshm/
H A Dshmtest.c180 int cstatus; in sigchld_handler() local
185 if (waitpid(child_pid, &cstatus, 0) != child_pid) in sigchld_handler()
188 if (WIFEXITED(cstatus) == 0) in sigchld_handler()
191 if (WEXITSTATUS(cstatus) != 0) in sigchld_handler()
193 WEXITSTATUS(cstatus)); in sigchld_handler()
/freebsd/tools/regression/sysvsem/
H A Dsemtest.c228 int cstatus; in sigchld_handler() local
234 if (wait(&cstatus) == -1) in sigchld_handler()
237 if (WIFEXITED(cstatus) == 0) in sigchld_handler()
240 if (WEXITSTATUS(cstatus) != 0) in sigchld_handler()
242 WEXITSTATUS(cstatus)); in sigchld_handler()
/freebsd/tools/regression/sysvmsg/
H A Dmsgtest.c216 int cstatus; in sigchld_handler() local
221 if (waitpid(child_pid, &cstatus, 0) != child_pid) in sigchld_handler()
224 if (WIFEXITED(cstatus) == 0) in sigchld_handler()
227 if (WEXITSTATUS(cstatus) != 0) in sigchld_handler()
229 WEXITSTATUS(cstatus)); in sigchld_handler()
/freebsd/contrib/ntp/scripts/monitoring/
H A Dntptrap383 ($cstatus) = ($data =~ /refclockstatus=0?x?([\da-fA-F]+)/);
384 $Cstatus = hex($cstatus);
409 ($cstatus) = ($data =~ /refclockstatus=0?x?([\da-fA-F]+)/);
410 $Cstatus = hex($cstatus);
/freebsd/sys/dev/usb/net/
H A Dif_axe.c1069 csum_hdr.cstatus = le16toh(csum_hdr.cstatus); in axe_rx_frame()
1127 if (csum_hdr != NULL && csum_hdr->cstatus & AXE_CSUM_HDR_L3_TYPE_IPV4) { in axe_rxeof()
1128 if ((csum_hdr->cstatus & (AXE_CSUM_HDR_L4_CSUM_ERR | in axe_rxeof()
1132 if ((csum_hdr->cstatus & AXE_CSUM_HDR_L4_TYPE_MASK) == in axe_rxeof()
1134 (csum_hdr->cstatus & AXE_CSUM_HDR_L4_TYPE_MASK) == in axe_rxeof()
H A Dif_axereg.h295 uint16_t cstatus; member
/freebsd/sys/dev/ahci/
H A Dahci.c1375 uint32_t cstatus, serr = 0, sntf = 0, ok, err; in ahci_ch_intr_main() local
1383 cstatus = ATA_INL(ch->r_mem, AHCI_P_SACT); in ahci_ch_intr_main()
1385 cstatus = 0; in ahci_ch_intr_main()
1387 cstatus |= ATA_INL(ch->r_mem, AHCI_P_CI); in ahci_ch_intr_main()
1430 cstatus |= ch->rslots; in ahci_ch_intr_main()
1433 ccs = powerof2(cstatus) ? ffs(cstatus) - 1 : -1; in ahci_ch_intr_main()
1460 err = ch->rslots & cstatus; in ahci_ch_intr_main()
1467 ok = ch->rslots & ~cstatus; in ahci_ch_intr_main()
/freebsd/sys/dev/oce/
H A Doce_mbox.c374 uint32_t cstatus = 0; in oce_mbox_post() local
402 cstatus = mb_cqe->u0.s.completion_status; in oce_mbox_post()
409 if (cstatus == 0 && mbxctx) { in oce_mbox_post()