提交 69137206 编写于 作者: U Ulrich Hecht 提交者: Riku Voipio

linux-user: getpriority errno fix

getpriority returned wrong errno; fixes LTP test getpriority02.
Signed-off-by: NUlrich Hecht <uli@suse.de>
Signed-off-by: NRiku Voipio <riku.voipio@iki.fi>
上级 d0927938
......@@ -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));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册