Home | History | Annotate | Download | only in pthread_attr_getstacksize

Lines Matching refs:rc

36 	int rc;
39 rc = pthread_attr_init(&attr);
40 if (rc != 0) {
46 rc = pthread_attr_getstacksize(&attr, &stack_size);
47 if (rc != 0) {
62 rc = pthread_attr_setstacksize(&attr, stack_size);
63 if (rc != 0) {
68 rc = pthread_attr_getstacksize(&attr, &ssize);
69 if (rc != 0) {
75 rc = pthread_attr_destroy(&attr);
76 if (rc != 0) {