| Age | Commit message (Expand) | Author |
| 2023-04-09 | kern: KASSERT(A && B) -> KASSERT(A); KASSERT(B) | riastradh |
| 2022-04-09 | sys: Use membar_release/acquire around reference drop. | riastradh |
| 2022-03-12 | sys: Membar audit around reference count releases. | riastradh |
| 2022-02-23 | fix various typos in comments, mainly immediatly/immediately/, | andvar |
| 2022-02-12 | Add inline functions to manipulate the klists that link up knotes | thorpej |
| 2021-10-27 | - In sendsig() and sigaction1(), don't hard-code signal trampoline | thorpej |
| 2021-09-26 | sig_filtops is MPSAFE. | thorpej |
| 2021-09-26 | Change the kqueue filterops::f_isfd field to filterops::f_flags, and | thorpej |
| 2021-04-03 | CTASSERT that NSIG <= 128. There are many hard-coded assumptions that | simonb |
| 2021-01-11 | Trailing whitespace | skrll |
| 2020-11-01 | Separate the compat_netbsd32_coredump from the compat_netbsd32 and | pgoyette |
| 2020-10-30 | fix indentation | christos |
| 2020-10-26 | Depend directly on EXEC_ELF{32,64} to determine which versions of the coredump | christos |
| 2020-10-20 | Fix build for _LP64 machines that don't have COMPAT_NETBSD32 (alpha, ia64) | christos |
| 2020-10-19 | Arrange so that no options COREDUMP and no options PTRACE work together. | christos |
| 2020-05-23 | Move proc_lock into the data segment. It was dynamically allocated because | ad |
| 2020-05-14 | Introduce new ptrace(2) operations: PT_SET_SIGPASS and PT_GET_SIGPASS | kamil |
| 2020-05-07 | On debugger attach to a prestarted process don't report SIGTRAP | kamil |
| 2020-04-06 | Reintroduce struct proc::p_oppid | kamil |
| 2020-04-05 | - Untangle spawn_return by splitting it up to sub-functions. | christos |
| 2020-03-26 | sigpost(): check for LSZOMB, not l_refcnt == 0. | ad |
| 2020-02-01 | Load struct fdfile::ff_file with atomic_load_consume. | riastradh |
| 2020-02-01 | Load struct filedesc::fd_dt with atomic_load_consume. | riastradh |
| 2020-01-23 | PAX_SEGVGUARD doesn't seem to work properly in testing for me, but at least | ad |
| 2019-12-06 | Make it possible to call mi_switch() and immediately switch to another CPU. | ad |
| 2019-11-21 | - lwp_need_userret(): only do it if ONPROC and !curlwp, and explain why. | ad |
| 2019-11-20 | Move all non-emulation-specific coredump code into the coredump module, | pgoyette |
| 2019-11-10 | Convert the coredump_vec modular function pointer to use the new | pgoyette |
| 2019-11-10 | Convert the sendsig_sigcontext_16 function pointer to use the new | pgoyette |
| 2019-10-21 | Fix a race condition when handling concurrent LWP signals and add a test | mgorny |
| 2019-10-16 | Add and use __FPTRCAST, requested by uwe@ | christos |
| 2019-10-16 | Add void * function pointer casts. There are different ways to "fix" those | christos |
| 2019-10-15 | Remove the short-circuit lwp_exit() path from sigswitch() | kamil |
| 2019-10-13 | Avoid double lwp_exit() in eventswitch() | kamil |
| 2019-10-13 | Fix one the the root causes of unreliability of the ptrace(2)ed threads | kamil |
| 2019-10-13 | Add sigswitch_unlock_and_switch_away(), extracted from sigswitch() | kamil |
| 2019-10-12 | Refactor sigswitch() | kamil |
| 2019-10-12 | Remove p_oppid from struct proc | kamil |
| 2019-10-08 | Enhance reliability of ptrace(2) in a debuggee with multiple LWPs | kamil |
| 2019-10-03 | Separate flag for suspended by _lwp_suspend and suspended by a debugger | kamil |
| 2019-09-30 | Move TRAP_CHLD/TRAP_LWP ptrace information from struct proc to siginfo | kamil |
| 2019-06-21 | Revert previous | kamil |
| 2019-06-21 | Enhance reliability of ptrace(2) in a debuggee with multiple LWPs | kamil |
| 2019-06-21 | Eliminate PS_NOTIFYSTOP remnants from the kernel | kamil |
| 2019-06-18 | Add support for KTR logs of SIGTRAP for TRAP_CHILD events | kamil |
| 2019-06-13 | Correct inversed condition for dying process in sigswitch() | kamil |
| 2019-06-04 | Stop trying to inform debugger about events from an exiting child | kamil |
| 2019-05-06 | Ship with syscall information with SIGTRAP TRAP_SCE/TRAP_SCX for tracers | kamil |
| 2019-05-03 | Register KTR events for debugger related signals | kamil |
| 2019-05-02 | Introduce fixes for ptrace(2) | kamil |