diff options
author | Ulrich Hecht <uli@suse.de> | 2009-09-17 21:08:37 +0300 |
---|---|---|
committer | Riku Voipio <riku.voipio@iki.fi> | 2009-10-15 23:55:55 +0300 |
commit | 691372066ca89e4669b41fc55cab6a061d88af6c (patch) | |
tree | 46614639b9572fed024a027fb0c947488da809bd /linux-user | |
parent | implementations of dup3 and fallocate that are good enough to fool LTP (diff) | |
download | qemu-kvm-691372066ca89e4669b41fc55cab6a061d88af6c.tar.gz qemu-kvm-691372066ca89e4669b41fc55cab6a061d88af6c.tar.bz2 qemu-kvm-691372066ca89e4669b41fc55cab6a061d88af6c.zip |
linux-user: getpriority errno fix
getpriority returned wrong errno; fixes LTP test getpriority02.
Signed-off-by: Ulrich Hecht <uli@suse.de>
Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index d07c381f0..baf00e0bf 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -5311,7 +5311,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1, /* libc does special remapping of the return value of * sys_getpriority() so it's just easiest to call * sys_getpriority() directly rather than through libc. */ - ret = sys_getpriority(arg1, arg2); + ret = get_errno(sys_getpriority(arg1, arg2)); break; case TARGET_NR_setpriority: ret = get_errno(setpriority(arg1, arg2, arg3)); |