summaryrefslogtreecommitdiffstats
path: root/linux-user/syscall.c
Commit message (Expand)AuthorAgeFilesLines
* Band-aid vfork() emulation (Kirill Shutemov).balrog2008-09-211-0/+4
* Enable same-arch consistency check on x86-64, print syscall name on error.balrog2008-09-211-4/+5
* Suppress gcc 4.x -Wpointer-sign (included in -Wall) warningsblueswir12008-09-201-1/+2
* Fix pread() and pwrite() syscall on ARM EABI (Kirill Shutemov).balrog2008-09-201-0/+8
* Add MTIOCTOP, MTIOCGET and MTIOCPOS ioctls (Kirill Shutemov).balrog2008-09-201-0/+1
* Fix building with 2.6.27 kernel headers (Kirill Shutemov).balrog2008-09-201-1/+1
* Implement the futimesat() syscall (by Kirill Shutemov).balrog2008-09-201-0/+25
* Implement fstatat64() syscall (by Kirill Shutemov).balrog2008-09-201-58/+83
* Swap only altered elements of the grouplist in getgroups() (Kirill Shutemov).balrog2008-09-201-2/+2
* Fix getgroups() with zero size parameter (Kirill Shutemov).balrog2008-09-201-0/+4
* qemu sh4 nptl supportaurel322008-09-151-0/+5
* Fix some warnings that would be generated by gcc -Wredundant-declsblueswir12008-08-301-4/+0Star
* To make syscall.c for 64 bit truly warning-free, we need some more #ifs.blueswir12008-08-241-1/+5
* Fix some warnings that would be generated by gcc -Wmissing-prototypesblueswir12008-08-171-15/+19
* Fix a bunch of type mismatch-related warnings (Jan Kiszka).balrog2008-07-161-0/+1
* More efficient target register / TC accesses.ths2008-06-271-1/+1
* Fix typo, by Laurent Desnogues.ths2008-06-101-1/+1
* Use qemu_mallocz to allocate new thread state. Remove redundant memset.pbrook2008-06-091-1/+1
* Despite what the documentation says/implies, PTHREAD_STACK_MIN is often notpbrook2008-06-091-0/+1
* Implement thread creation.pbrook2008-06-081-11/+137
* Fix location of futex.h.pbrook2008-06-021-3/+4
* Make signal queues per thread.pbrook2008-05-311-5/+1Star
* Fix structure type in sigtimedwait syscall.pbrook2008-05-301-2/+2
* Handle NULL argp/envp in execve syscall.pbrook2008-05-301-4/+4
* Implement waitid syscall.pbrook2008-05-301-0/+15
* Perform target->host signal mapping for *kill syscalls.pbrook2008-05-301-3/+4
* Move clone() register setup to target specific code. Handle fork-like clone.pbrook2008-05-301-58/+5Star
* NPTL host detection and futex syscall passthrough.pbrook2008-05-291-0/+61
* Implement clock_nanosleep.pbrook2008-05-291-0/+11
* Fix build failure with old kernel headers (loop.h is incompatible withpbrook2008-05-231-1/+1
* added missing return (Mike Frysinger)bellard2008-05-101-0/+2
* Update ARM rt_frame layout.pbrook2008-05-061-0/+31
* Add loop device ioctls (Gary Thomas).balrog2008-04-261-0/+1
* Teach mmap to not overwrite reserved pages and fix brk return value (Richard ...balrog2008-04-261-6/+5Star
* add pread64 and pwrite64 system callsaurel322008-03-281-0/+14
* m68k mmap2 fixes.pbrook2008-03-251-3/+1Star
* Revert fix for CVE-2008-0928. Will be fixed in a different way later.aurel322008-03-121-0/+3
* Make MIPS MT implementation more cache friendly.ths2008-02-121-3/+3
* Don't error out on zero-length chunks in writev, as to mimic Linux (Kirill A....balrog2008-02-101-1/+1
* lock_iovec() fixbellard2008-02-041-5/+12
* Correct errno return for setsockopt(), by Thayne Harbaugh.ths2007-12-181-1/+1
* Correct errno return for getsockopt(), by Thayne Harbaugh.ths2007-12-181-2/+3
* sh_serial: enable tx after reset (Magnus Damm).balrog2007-12-121-1/+1
* Add missing break just before execve, by Takashi Yoshii.balrog2007-12-121-0/+1
* Fix execve argc/envc counting, by Takashi Yoshii.ths2007-12-101-2/+2
* copy_{to,from}_user_timeval() update, by Thayne Harbaugh.ths2007-12-091-32/+42
* copy_from_user_fdset() update, by Thayne Harbaugh.ths2007-12-091-76/+75Star
* Fix for execve syscall, by Kirill A. Shutemov.ths2007-12-021-4/+4
* suppressed tgetx and tputx (initial patch by Thayne Harbaugh)bellard2007-11-161-146/+300
* x86_64 linux user emulationbellard2007-11-141-38/+59