Home
last modified time | relevance | path

Searched refs:nsops (Results 1 – 1 of 1) sorted by relevance

/qemu/linux-user/
H A Dsyscall.c739 unsigned, nsops, const struct timespec *, timeout) in safe_syscall3()
4021 unsigned nsops) in target_to_host_sembuf() argument
4027 nsops*sizeof(struct target_sembuf), 1); in target_to_host_sembuf()
4031 for(i=0; i<nsops; i++) { in target_to_host_sembuf()
4059 unsigned nsops, in do_semtimedop() argument
4079 if (nsops > TARGET_SEMOPM) { in do_semtimedop()
4083 sops = g_new(struct sembuf, nsops); in do_semtimedop()
4085 if (target_to_host_sembuf(sops, ptr, nsops)) { in do_semtimedop()
4092 ret = get_errno(safe_semtimedop(semid, sops, nsops, pts)); in do_semtimedop()
4097 SEMTIMEDOP_IPC_ARGS(nsops, sops, (long)pts))); in do_semtimedop()