Searched refs:obits (Results 1 - 3 of 3) sorted by relevance

/macosx-10.5.8/xnu-1228.15.4/bsd/sys/
H A Duser.h116 u_int32_t *ibits, *obits; /* bits to select on */ member in struct:uthread::_select
117 uint nbytes; /* number of bytes in ibits and obits */
/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Dsys_generic.c923 static int selcount(struct proc *p, u_int32_t *ibits, u_int32_t *obits,
991 if (sel->obits != NULL) {
992 FREE(sel->obits, M_TEMP);
994 sel->obits = NULL;
1000 MALLOC(sel->obits, u_int32_t *, nbytes, M_TEMP, M_WAITOK | M_ZERO);
1001 if (sel->obits == NULL) {
1012 bzero((caddr_t)sel->obits, sel->nbytes);
1055 if ( (error = selcount(p, sel->ibits, sel->obits, uap->nd, &count, &kfcount)) ) {
1160 /* cleanup obits and try again */
1221 copyout((caddr_t)&sel->obits[(
1249 u_int32_t *ibits, *obits; local
1595 selcount(struct proc *p, u_int32_t *ibits, __unused u_int32_t *obits, int nfd, int *countp, int * kfcountp) argument
[all...]
H A Dkern_fork.c1210 FREE(sel->obits, M_TEMP);

Completed in 34 milliseconds