aboutsummaryrefslogtreecommitdiff
path: root/bsd-user
AgeCommit message (Expand)AuthorFilesLines
2023-06-26target/i386: implement SYSCALL/SYSRET in 32-bit emulatorsPaolo Bonzini1-0/+4
2023-06-13linux-user, bsd-user: Preserve incoming order of environment variables in the...Andreas Schwab1-1/+9
2023-06-01*-user: remove the guest_user_syscall tracepointsAlex Bennée1-3/+0
2023-05-11disas: Remove target_ulong from the interfaceRichard Henderson1-2/+3
2023-05-02bsd-user: Add '-one-insn-per-tb' option equivalent to '-singlestep'Peter Maydell1-2/+3
2023-05-02accel/tcg: Use one_insn_per_tb global instead of old singlestep globalPeter Maydell1-1/+0
2023-05-02make one-insn-per-tb an accel optionPeter Maydell1-2/+6
2023-03-28include/exec: Change reserved_va semantics to last byteRichard Henderson2-9/+5
2023-03-28accel/tcg: Pass last not end to page_set_flagsRichard Henderson1-3/+3
2023-03-07gdbstub: move syscall handling to new fileAlex Bennée1-0/+2
2023-03-07gdbstub: move chunks of user code into own filesAlex Bennée2-0/+2
2023-03-01bsd-user: implement sysctlbyname(2)Kyle Evans3-0/+74
2023-03-01bsd-user: do_freebsd_sysctl helper for sysctl(2)Kyle Evans3-1/+61
2023-03-01bsd-user: Start translation of arch-specific sysctlsJuergen Lock1-2/+143
2023-03-01bsd-user: common routine do_freebsd_sysctl_oid for all sysctl variantsJuergen Lock1-4/+86
2023-03-01bsd-user: sysctl helper funtions: sysctl_name2oid and sysctl_oidfmtJuergen Lock1-0/+18
2023-03-01bsd-user: Helper routines oidfmtStacey Son1-4/+127
2023-03-01bsd-user: various helper routines for sysctlWarner Losh1-0/+86
2023-03-01bsd-user: Add sysarch syscallStacey Son1-0/+7
2023-03-01bsd-user: Don't truncate the return value from freebsd_syscallDoug Rabson1-1/+1
2023-02-17bsd-user/mmap: use TSA_NO_TSA to suppress clang TSA warnings in FreeBSDEmanuele Giuseppe Esposito1-2/+3
2023-02-08bsd-user: Clean up includesMarkus Armbruster11-13/+9
2022-12-14Drop more useless casts from void * to pointerMarkus Armbruster1-1/+1
2022-10-26bsd-user: Catch up with sys/param.h requirement for machine/pmap.hMuhammad Moinur Rahman2-0/+2
2022-10-26accel/tcg: Call tb_invalidate_phys_page for PAGE_RESETRichard Henderson1-2/+0
2022-07-02bsd-user: Remove stray 'inline' from do_bsd_closeWarner Losh1-1/+1
2022-07-02bsd-user: Implement undeleteWarner Losh2-0/+17
2022-07-02bsd-user: Implement pathconf, lpathconf and fpathconfWarner Losh2-0/+44
2022-07-02bsd-user: Implement mkfifo and mkfifoatWarner Losh2-0/+35
2022-07-02bsd-user: Implement chroot and flockWarner Losh2-0/+27
2022-07-02bsd-user: Implement chflags, lchflags and fchflagsWarner Losh2-0/+44
2022-07-02bsd-user: Implement chown, fchown, lchown and fchownatWarner Losh2-0/+64
2022-07-02bsd-user: Implement freebsd11_mknod, freebsd11_mknodat and mknodatWarner Losh2-0/+60
2022-07-02bsd-user: implement chmod, fchmod, lchmod and fchmodatWarner Losh2-0/+62
2022-07-02bsd-user: Implement symlink, symlinkat, readlink and readlinkatWarner Losh2-0/+90
2022-07-02bsd-user: Implement mount, umount and nmountWarner Losh2-0/+65
2022-06-14bsd-user: Implement acct and syncWarner Losh2-0/+31
2022-06-14bsd-user: Implement trunctate and ftruncateWarner Losh2-0/+37
2022-06-14bsd-user: Implement dup and dup2Warner Losh2-0/+20
2022-06-14bsd-user: Implement rmdir and undocumented __getcwdWarner Losh2-0/+37
2022-06-14bsd-user: Implement mkdir and mkdiratWarner Losh2-0/+35
2022-06-13bsd-user: Implement link, linkat, unlink and unlinkatWarner Losh2-0/+70
2022-06-13bsd-user: Implement rename and renameatWarner Losh2-0/+53
2022-06-13bsd-user: Implement chdir and fchdirWarner Losh2-0/+27
2022-06-13bsd-user: Implement revoke, access, eaccess and faccessatWarner Losh2-0/+69
2022-06-13bsd-user: Implement fdatasync, fsync and close_fromWarner Losh2-0/+31
2022-06-13bsd-user: Implement open, openat and closeWarner Losh3-0/+69
2022-06-10bsd-user/freebsd/os-syscall.c: Implement exitWarner Losh2-0/+49
2022-06-10bsd-user/bsd-file.h: Meat of the write system callsWarner Losh2-0/+106
2022-06-10bsd-user/bsd-file.h: Add implementations for read, pread, readv and preadvWarner Losh2-0/+107