Lines Matching defs:tsops
1983 static long do_semtimedop(int semid, struct sembuf __user *tsops,
2009 if (copy_from_user(sops, tsops, nsops * sizeof(*tsops))) {
2237 long ksys_semtimedop(int semid, struct sembuf __user *tsops,
2244 return do_semtimedop(semid, tsops, nsops, &ts);
2246 return do_semtimedop(semid, tsops, nsops, NULL);
2249 SYSCALL_DEFINE4(semtimedop, int, semid, struct sembuf __user *, tsops,
2252 return ksys_semtimedop(semid, tsops, nsops, timeout);
2277 SYSCALL_DEFINE3(semop, int, semid, struct sembuf __user *, tsops,
2280 return do_semtimedop(semid, tsops, nsops, NULL);