Lines Matching defs:tsops
2029 static long do_semtimedop(int semid, struct sembuf __user *tsops, unsigned nsops, const struct timespec64 *timeout)
2057 if (copy_from_user(sops, tsops, nsops * sizeof(*tsops))) {
2294 long ksys_semtimedop(int semid, struct sembuf __user *tsops, unsigned int nsops,
2302 return do_semtimedop(semid, tsops, nsops, &ts);
2304 return do_semtimedop(semid, tsops, nsops, NULL);
2307 SYSCALL_DEFINE4(semtimedop, int, semid, struct sembuf __user *, tsops, unsigned int, nsops,
2310 return ksys_semtimedop(semid, tsops, nsops, timeout);
2334 SYSCALL_DEFINE3(semop, int, semid, struct sembuf __user *, tsops, unsigned, nsops)
2336 return do_semtimedop(semid, tsops, nsops, NULL);