Index: Makefile.target =================================================================== RCS file: /cvsroot/qemu/qemu/Makefile.target,v retrieving revision 1.57 diff -u -r1.57 Makefile.target --- Makefile.target 10 Feb 2005 21:48:51 -0000 1.57 +++ Makefile.target 22 Feb 2005 15:40:57 -0000 @@ -209,7 +209,7 @@ ######################################################### -DEFINES+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE +DEFINES+=-D_GNU_SOURCE -D_BSD_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE LIBS+=-lm ifndef CONFIG_USER_ONLY LIBS+=-lz Index: linux-user/syscall.c =================================================================== RCS file: /cvsroot/qemu/qemu/linux-user/syscall.c,v retrieving revision 1.57 diff -u -r1.57 syscall.c --- linux-user/syscall.c 31 Jan 2005 20:45:13 -0000 1.57 +++ linux-user/syscall.c 22 Feb 2005 15:40:58 -0000 @@ -207,6 +207,7 @@ #define __NR_sys_getdents __NR_getdents #define __NR_sys_getdents64 __NR_getdents64 #define __NR_sys_rt_sigqueueinfo __NR_rt_sigqueueinfo +#define __NR_sys_syslog __NR_syslog #if defined(__alpha__) || defined (__ia64__) || defined(__x86_64__) #define __NR__llseek __NR_lseek @@ -228,6 +229,7 @@ _syscall2(int,sys_statfs,const char *,path,struct kernel_statfs *,buf) _syscall2(int,sys_fstatfs,int,fd,struct kernel_statfs *,buf) _syscall3(int,sys_rt_sigqueueinfo,int,pid,int,sig,siginfo_t *,uinfo) +_syscall3(int,sys_syslog,int,type,char*,bufp,int,len) #ifdef __NR_exit_group _syscall1(int,exit_group,int,error_code) #endif @@ -241,6 +243,7 @@ extern int setresgid(gid_t, gid_t, gid_t); extern int getresgid(gid_t *, gid_t *, gid_t *); extern int setgroups(int, gid_t *); +extern int uselib(const char*); static inline long get_errno(long ret) { @@ -577,7 +580,9 @@ case SO_OOBINLINE: case SO_NO_CHECK: case SO_PRIORITY: +#ifdef SO_BSDCOMPAT case SO_BSDCOMPAT: +#endif case SO_PASSCRED: case SO_TIMESTAMP: case SO_RCVLOWAT: @@ -1828,7 +1833,9 @@ goto unimplemented; case TARGET_NR_acct: - goto unimplemented; + ret = get_errno(acct(path((const char*)arg1))); + break; + case TARGET_NR_umount2: ret = get_errno(umount2((const char *)arg1, arg2)); break; @@ -2140,7 +2147,9 @@ ret = get_errno(readlink(path((const char *)arg1), (char *)arg2, arg3)); break; case TARGET_NR_uselib: - goto unimplemented; + ret = get_errno(uselib(path((const char*)arg1))); + break; + case TARGET_NR_swapon: ret = get_errno(swapon((const char *)arg1, arg2)); break; @@ -2255,7 +2264,9 @@ ret = do_socketcall(arg1, (int32_t *)arg2); break; case TARGET_NR_syslog: - goto unimplemented; + ret = get_errno(sys_syslog((int)arg1, (char*)arg2, (int)arg3)); + break; + case TARGET_NR_setitimer: { struct target_itimerval *target_value = (void *)arg2; @@ -3045,11 +3057,14 @@ goto unimplemented; #ifdef TARGET_NR_mincore case TARGET_NR_mincore: - goto unimplemented; + page_unprotect_range((void*)arg3, ((size_t)arg2 + TARGET_PAGE_SIZE - 1) / TARGET_PAGE_SIZE); + ret = get_errno(mincore((void*)arg1, (size_t)arg2, (unsigned char*)arg3)); + break; #endif #ifdef TARGET_NR_madvise case TARGET_NR_madvise: - goto unimplemented; + ret = get_errno(madvise((void*)arg1, (size_t)arg2, (int)arg3)); + break; #endif #if TARGET_LONG_BITS == 32 case TARGET_NR_fcntl64: @@ -3098,7 +3113,8 @@ ret = get_errno(gettid()); break; case TARGET_NR_readahead: - goto unimplemented; + ret = get_errno(readahead((int)arg1, (off64_t)arg2, (size_t)arg3)); + break; #ifdef TARGET_NR_setxattr case TARGET_NR_setxattr: case TARGET_NR_lsetxattr: