Home | History | Annotate | Download | only in kernel

Lines Matching refs:RZ

501 	RZ(pthread_create(&t, NULL, &threadspfunc, NULL));
504 RZ(pthread_join(t, &sp));
514 RZ(pthread_attr_init(&attr));
515 RZ(pthread_attr_setstack(&attr, stack, SIGSTKSZ + i));
516 RZ(pthread_create(&t, &attr, &threadspfunc, NULL));
517 RZ(pthread_attr_destroy(&attr));
520 RZ(pthread_join(t, &sp));
534 RZ(pthread_attr_init(&attr));
535 RZ(pthread_attr_setstack(&attr, stack + i, SIGSTKSZ));
536 RZ(pthread_create(&t, &attr, &threadspfunc, NULL));
537 RZ(pthread_attr_destroy(&attr));
540 RZ(pthread_join(t, &sp));