Lines Matching defs:tsops
2222 static long do_semtimedop(int semid, struct sembuf __user *tsops,
2242 if (copy_from_user(sops, tsops, nsops * sizeof(*tsops))) {
2256 long ksys_semtimedop(int semid, struct sembuf __user *tsops,
2263 return do_semtimedop(semid, tsops, nsops, &ts);
2265 return do_semtimedop(semid, tsops, nsops, NULL);
2268 SYSCALL_DEFINE4(semtimedop, int, semid, struct sembuf __user *, tsops,
2271 return ksys_semtimedop(semid, tsops, nsops, timeout);
2296 SYSCALL_DEFINE3(semop, int, semid, struct sembuf __user *, tsops,
2299 return do_semtimedop(semid, tsops, nsops, NULL);