aboutsummaryrefslogtreecommitdiff
path: root/bsd-user
AgeCommit message (Expand)AuthorFilesLines
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
2022-06-10bsd-user/freebsd/os-syscall.c: Tracing and error boilerplateWarner Losh1-4/+40
2022-06-10bsd-user/freebsd/os-syscall.c: unlock_iovecWarner Losh1-0/+14
2022-06-10bsd-user/freebsd/os-syscall.c: lock_iovecWarner Losh1-0/+102
2022-05-11Clean up decorations and whitespace around header guardsMarkus Armbruster2-2/+2
2022-05-11Clean up ill-advised or unusual header guardsMarkus Armbruster47-141/+157
2022-05-11Clean up header guards that don't match their file nameMarkus Armbruster4-13/+12
2022-04-21compiler.h: replace QEMU_NORETURN with G_NORETURNMarc-André Lureau1-1/+2
2022-04-21include: rename qemu-common.h qemu/help-texts.hMarc-André Lureau1-1/+1
2022-04-20Merge tag 'pull-tcg-20220420' of https://gitlab.com/rth7680/qemu into stagingRichard Henderson1-1/+0
2022-04-20Don't include sysemu/tcg.h if it is not necessaryThomas Huth1-1/+0
2022-04-20bsd-user: Use qemu_set_log_filename_flagsRichard Henderson1-9/+9
2022-04-20bsd-user: Expand log_page_dump inlineRichard Henderson1-14/+23
2022-04-20util/log: Pass Error pointer to qemu_set_logRichard Henderson1-1/+1
2022-04-20util/log: Drop manual log bufferingRichard Henderson1-1/+0
2022-04-06Remove qemu-common.h include from most unitsMarc-André Lureau2-2/+0
2022-04-06Replace qemu_real_host_page variables with inlined functionsMarc-André Lureau2-2/+2
2022-04-06Replace TARGET_WORDS_BIGENDIANMarc-André Lureau1-1/+1
2022-03-22Replace GCC_FMT_ATTR with G_GNUC_PRINTFMarc-André Lureau1-1/+1
2022-02-26bsd-user: Add safe system call macrosWarner Losh1-0/+47
2022-02-26bsd-user: Define target_arg64Warner Losh1-0/+13
2022-02-26bsd-user: introduce target.hWarner Losh4-0/+64
2022-02-26bsd-user/bsd-file.h: Implementation details for the filesystem callsWarner Losh2-0/+32
2022-02-26bsd-user/freebsd/os-syscall.c: Add get_errno and host_to_target_errnoWarner Losh2-2/+24
2022-02-26bsd-user/sycall.c: Now obsolete, removeWarner Losh1-516/+0
2022-02-26bsd-user: Move system call building to os-syscall.cWarner Losh2-1/+1
2022-02-26bsd-user/freebsd/os-syscall.c: Move syscall processing hereWarner Losh1-0/+69
2022-02-26bsd-user: Remove bsd_typeWarner Losh2-9/+0
2022-02-26bsd-user/x86_64/target_arch_thread.h: Assume a FreeBSD targetWarner Losh1-3/+1
2022-02-26bsd-user/arm/target_arch_thread.h: Assume a FreeBSD targetWarner Losh1-3/+1
2022-02-26bsd-user/arm/target_arch_cpu.h: Only support FreeBSD sys callsWarner Losh1-73/+66
2022-02-26bsd-user/i386/target_arch_cpu.h: Remove openbsd syscallWarner Losh1-47/+37
2022-02-26bsd-user/x86_64/target_arch_cpu.h: Remove openbsd syscallWarner Losh1-19/+8
2022-02-26bsd-user/x86_64/target_arch_cpu.h: int $80 never was a BSD system call on amd64Warner Losh1-58/+0
2022-02-26bsd-user/main.c: Drop syscall flavor arg -bsdWarner Losh1-12/+0
2022-02-21exec/exec-all: Move 'qemu/log.h' include in units requiring itPhilippe Mathieu-Daudé1-0/+1
2022-02-01bsd-user/signal.c: Only copy the _capsicum for FreeBSD_version > 1400026Warner Losh2-0/+10
2022-01-30bsd-user/freebsd/target_os_ucontext.h: Prefer env as arg name for CPUArchStat...Warner Losh1-3/+3
2022-01-30bsd-user: Rename arg name for target_cpu_reset to envWarner Losh3-5/+5
2022-01-30bsd-user/signal.c: do_sigaltstackWarner Losh1-5/+67
2022-01-30bsd-user/signal.c: implement do_sigactionWarner Losh2-0/+104
2022-01-30bsd-user/signal.c: implement do_sigreturnWarner Losh2-1/+57
2022-01-28bsd-user/signal.c: process_pending_signalsWarner Losh1-1/+55
2022-01-28bsd-user/signal.c: tswap_siginfoWarner Losh1-0/+53
2022-01-28bsd-user/signal.c: handle_pending_signalWarner Losh2-0/+94
2022-01-28bsd-user/signal.c: setup_frameWarner Losh3-1/+90