Home
last modified time | relevance | path

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

/qemu/linux-user/
H A Dsyscall.c989 abi_ulong target_rlim_swap; in target_to_host_rlim() local
992 target_rlim_swap = tswapal(target_rlim); in target_to_host_rlim()
993 if (target_rlim_swap == TARGET_RLIM_INFINITY) in target_to_host_rlim()
996 result = target_rlim_swap; in target_to_host_rlim()
997 if (target_rlim_swap != (rlim_t)result) in target_to_host_rlim()
1007 abi_ulong target_rlim_swap; in host_to_target_rlim() local
1011 target_rlim_swap = TARGET_RLIM_INFINITY; in host_to_target_rlim()
1013 target_rlim_swap = rlim; in host_to_target_rlim()
1014 result = tswapal(target_rlim_swap); in host_to_target_rlim()