aboutsummaryrefslogtreecommitdiff
path: root/bsd-user
AgeCommit message (Expand)AuthorFilesLines
2024-01-29include/qemu: Add TCGCPUOps typedef to typedefs.hRichard Henderson1-2/+2
2024-01-19cli: Remove deprecated '-singlestep' command line optionPhilippe Mathieu-Daudé1-2/+1
2024-01-05cpu: Add generic cpu_list()Gavin Shan1-4/+1
2023-12-31configure, meson: rename targetos to host_osPaolo Bonzini1-1/+1
2023-11-15bsd-user: spelling fixes: necesary, agrument, undocummentedMichael Tokarev3-5/+5
2023-11-07hw/cpu: Clean up global variable shadowingPhilippe Mathieu-Daudé1-1/+1
2023-10-27target/arm: Move feature test functions to their own headerPeter Maydell1-0/+1
2023-10-05Merge tag 'pull-tcg-20231004' of https://gitlab.com/rth7680/qemu into stagingStefan Hajnoczi3-16/+7
2023-10-04build: Remove --enable-gprofRichard Henderson2-8/+0
2023-10-04tcg: Split out tcg init functions to tcg/startup.hRichard Henderson1-1/+1
2023-10-04tcg: Remove argument to tcg_prologue_initRichard Henderson1-1/+1
2023-10-04accel/tcg: Replace CPUState.env_ptr with cpu_env()Richard Henderson2-6/+5
2023-10-03bsd-user: Add stubs for vadvise(), sbrk() and sstk()Warner Losh2-0/+30
2023-10-03bsd-user: Implement shmat(2) and shmdt(2)Stacey Son4-1/+97
2023-10-03bsd-user: Implement shmctl(2)Stacey Son2-0/+43
2023-10-03bsd-user: Implement shm_unlink(2) and shmget(2)Stacey Son2-0/+31
2023-10-03bsd-user: Implement shm_open(2)Stacey Son2-0/+29
2023-10-03bsd-user: Implement do_obreak functionStacey Son2-0/+52
2023-10-03bsd-user: Implement mincore(2)Stacey Son2-0/+27
2023-10-03bsd-user: Implment madvise(2) to match the linux-user implementation.Karim Taha3-0/+59
2023-10-03bsd-user: Implement mlock(2), munlock(2), mlockall(2), munlockall(2), minheri...Stacey Son2-0/+57
2023-10-03bsd-user: Implement msync(2)Stacey Son2-0/+15
2023-10-03bsd-user: Implement mprotect(2)Stacey Son2-0/+11
2023-10-03bsd-user: Implement mmap(2) and munmap(2)Stacey Son2-0/+29
2023-10-03bsd-user: Introduce bsd-mem.h to the source treeStacey Son2-0/+65
2023-10-03bsd-user: Implement shmid_ds conversion between host and target.Stacey Son1-0/+47
2023-10-03bsd-user: Implement ipc_perm conversion between host and target.Stacey Son1-0/+25
2023-10-03bsd-user: Implement target_set_brk function in bsd-mem.c instead of os-syscall.cStacey Son2-4/+32
2023-10-03bsd-user: Add bsd-mem.c to meson.buildKarim Taha2-0/+1
2023-10-03bsd-user: Implement shm_rename(2) system callKyle Evans2-0/+30
2023-10-03bsd-user: Implement shm_open2(2) system callKarim Taha2-6/+62
2023-10-03bsd-user: Introduce freebsd/os-misc.h to the source treeStacey Son1-0/+28
2023-10-03bsd-user: Declarations for ipc_perm and shmid_ds conversion functionsStacey Son1-0/+20
2023-10-03bsd-user: Implement struct target_shmid_dsStacey Son1-0/+20
2023-10-03bsd-user: Implement struct target_ipc_permStacey Son1-0/+17
2023-10-03bsd-user: Implement pdfork(2) system call.Stacey Son2-0/+36
2023-10-03bsd-user: Implement rfork(2) system call.Stacey Son2-0/+43
2023-10-03bsd-user: Implement fork(2) and vfork(2) system calls.Stacey Son2-0/+42
2023-10-03bsd-user: Implement pdgetpid(2) and the undocumented setugid.Stacey Son2-0/+31
2023-10-03bsd-user: Implement setloginclass(2) and getloginclass(2) system calls.Stacey Son2-0/+40
2023-10-03bsd-user: Implement wait4(2) and wait6(2) system calls.Stacey Son2-0/+99
2023-10-03bsd-user: Implement execve(2) and fexecve(2) system calls.Karim Taha2-1/+59
2023-10-03bsd-user: Implement procctl(2) along with necessary conversion functions.Stacey Son2-0/+226
2023-10-03bsd-user: Implement freebsd_exec_common, used in implementing execve/fexecve.Stacey Son3-4/+180
2023-10-03bsd-user: Implement get_filename_from_fd.Karim Taha2-0/+83
2023-10-03bsd-user: Implement getpriority(2) and setpriority(2).Stacey Son2-0/+32
2023-10-03bsd-user: Add stubs for profil(2), ktrace(2), utrace(2) and ptrace(2).Stacey Son2-0/+44
2023-10-03bsd-user: Implement get/set[resuid/resgid/sid] and issetugid.Stacey Son2-0/+104
2023-10-03bsd-user: Implement several get/set system calls:Stacey Son2-0/+150
2023-10-03bsd-user: Implement getrlimit(2) and setrlimit(2)Stacey Son2-0/+67