提交 d0b3e735 编写于 作者: B bellard

SYS_SEEK fix (Paul Brook)


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1402 c046a42c-6fe2-441c-8c8c-71466251a162
上级 e9009676
......@@ -124,7 +124,10 @@ uint32_t do_arm_semihosting(CPUState *env)
case SYS_ISTTY:
return isatty(ARG(0));
case SYS_SEEK:
return set_swi_errno(ts, lseek(ARG(0), ARG(1), SEEK_SET));
ret = set_swi_errno(ts, lseek(ARG(0), ARG(1), SEEK_SET));
if (ret == (uint32_t)-1)
return -1;
return 0;
case SYS_FLEN:
{
struct stat buf;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册