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

/darwin-on-arm/xnu/bsd/sys/
H A Duser.h171 size_t uu_allocsize; /* ...size of select cache */ member in struct:uthread
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_fork.c1545 if (uth->uu_allocsize && uth->uu_wqset){
1546 kfree(uth->uu_wqset, uth->uu_allocsize);
1548 uth->uu_allocsize = 0;
H A Dsys_generic.c1098 if (uth->uu_allocsize) {
1102 if (size > uth->uu_allocsize) {
1103 kfree(uth->uu_wqset, uth->uu_allocsize);
1104 uth->uu_allocsize = size;
1110 uth->uu_allocsize = size;
1111 uth->uu_wqset = (wait_queue_set_t)kalloc(uth->uu_allocsize);

Completed in 30 milliseconds