Home | History | Annotate | Download | only in vfs

Lines Matching refs:res

68 	int res, fd, quit;
77 res = rump_sys_chdir(path);
78 if (res == -1)
83 res = pthread_create(&th1, NULL, func1, &quit);
84 if (res != 0)
86 res = pthread_create(&th2, NULL, func2, &quit);
87 if (res != 0)
94 res = pthread_join(th2, NULL);
95 if (res != 0)
97 res = pthread_join(th1, NULL);
98 if (res != 0)
101 res = rump_sys_fchdir(fd);
102 if (res == -1)