summaryrefslogtreecommitdiff
path: root/linux-user/syscall.c
AgeCommit message (Expand)AuthorFilesLines
2009-02-03linux-user: Remove incorrect break;aurel321-1/+0
2009-01-30linux-user: identify running binary in /proc/self/exeaurel321-3/+12
2009-01-30linuw-user fix: read() and acct() on NULL argumentsaurel321-8/+16
2009-01-30linux-user: return EINVAL on incorrect sockaddraurel321-2/+31
2009-01-30linux-user: fix accept(2) with NULL peeraurel321-0/+3
2009-01-07CRIS: Clone flags are reversed on CRIS.edgar_igl1-0/+2
2009-01-07CRIS: Implement set_thread_area for CRIS.edgar_igl1-0/+8
2009-01-05Fix more FSF addressesblueswir11-1/+2
2008-12-18User-mode GDB stub improvements - handle forkaurel321-13/+9
2008-12-13Fix warning about unused shm_regionsblueswir11-0/+2
2008-11-14target-alpha: implement getxuid and getxgid syscallsaurel321-0/+24
2008-11-10use target_mmap() to allocate idt, gdt and ldt (Kirill A. Shutemov).balrog1-4/+8
2008-11-06User qemu profilingaurel321-0/+6
2008-10-28Recvmsg must return the number of bytes received (Lauro Ramos Venancio).balrog1-2/+6
2008-10-28Fix iovec for the case with invalid elements (Lauro Ramos Venancio).balrog1-13/+7
2008-10-28Use the host exit syscall for exiting (Lauro Ramos Venancio).balrog1-1/+3
2008-10-26Fix undeclared symbol warnings from sparseblueswir11-1/+1
2008-10-25Replace uses of strncpy (a GNU extension) with Qemu pstrcpyblueswir11-1/+1
2008-10-24Add missing return statement (fixes compiler warning).aurel321-0/+1
2008-10-13linux-user: implement msg* syscallsaurel321-0/+21
2008-10-13linux-user: fix and cleanup IPCOP_msg* ipc calls handlingaurel321-55/+116
2008-10-13linux-user: fix getdents* syscallsaurel321-14/+13
2008-10-13linux-user: Add readahead syscallaurel321-1/+14
2008-10-05Make various generated structures staticblueswir11-1/+1
2008-10-05Make ioctl table staticblueswir11-1/+1
2008-10-05Make bitmask tables static constblueswir11-4/+4
2008-10-05Make struct_termios_def constblueswir11-1/+1
2008-10-01Add inotify syscall familyaurel321-0/+29
2008-10-01Add mincore syscallaurel321-1/+13
2008-10-01Add fadvise64 stubsaurel321-0/+21
2008-09-21Band-aid vfork() emulation (Kirill Shutemov).balrog1-0/+4
2008-09-21Enable same-arch consistency check on x86-64, print syscall name on error.balrog1-4/+5
2008-09-20Suppress gcc 4.x -Wpointer-sign (included in -Wall) warningsblueswir11-1/+2
2008-09-20Fix pread() and pwrite() syscall on ARM EABI (Kirill Shutemov).balrog1-0/+8
2008-09-20Add MTIOCTOP, MTIOCGET and MTIOCPOS ioctls (Kirill Shutemov).balrog1-0/+1
2008-09-20Fix building with 2.6.27 kernel headers (Kirill Shutemov).balrog1-1/+1
2008-09-20Implement the futimesat() syscall (by Kirill Shutemov).balrog1-0/+25
2008-09-20Implement fstatat64() syscall (by Kirill Shutemov).balrog1-58/+83
2008-09-20Swap only altered elements of the grouplist in getgroups() (Kirill Shutemov).balrog1-2/+2
2008-09-20Fix getgroups() with zero size parameter (Kirill Shutemov).balrog1-0/+4
2008-09-15qemu sh4 nptl supportaurel321-0/+5
2008-08-30Fix some warnings that would be generated by gcc -Wredundant-declsblueswir11-4/+0
2008-08-24To make syscall.c for 64 bit truly warning-free, we need some more #ifs.blueswir11-1/+5
2008-08-17Fix some warnings that would be generated by gcc -Wmissing-prototypesblueswir11-15/+19
2008-07-16Fix a bunch of type mismatch-related warnings (Jan Kiszka).balrog1-0/+1
2008-06-27More efficient target register / TC accesses.ths1-1/+1
2008-06-10Fix typo, by Laurent Desnogues.ths1-1/+1
2008-06-09Use qemu_mallocz to allocate new thread state. Remove redundant memset.pbrook1-1/+1
2008-06-09Despite what the documentation says/implies, PTHREAD_STACK_MIN is often notpbrook1-0/+1
2008-06-07Implement thread creation.pbrook1-11/+137