Age | Commit message (Expand) | Author |
2016-04-25 | remove systrace remnants | Ted Unangst |
2016-04-25 | boom goes the dynamite | Ted Unangst |
2016-03-11 | increase size of oldpids to 128 to prevent mod bias when idx wraps. | Ted Unangst |
2015-10-09 | Rename tame() to pledge(). This fairly interface has evolved to be more | Theo de Raadt |
2015-09-11 | Only include <sys/tame.h> in the .c files that need it | Philip Guenther |
2015-08-22 | Move to tame(int flags, char *paths[]) API/ABI. | Theo de Raadt |
2015-07-19 | tame(2) is a subsystem which restricts programs into a "reduced feature | Theo de Raadt |
2015-03-14 | add sys/atomic.h back for membar_* needed for at least armv7 | Jonathan Gray |
2015-03-14 | Remove some includes include-what-you-use claims don't | Jonathan Gray |
2015-02-10 | Factor out the common bits of process_new() and main()'s code for | Philip Guenther |
2014-11-18 | move arc4random prototype to systm.h. more appropriate for most code | Ted Unangst |
2014-11-03 | include sys/unistd.h where needed instead of indirect reliance. ok jsg | Ted Unangst |
2014-11-03 | pass size argument to free() | Theo de Raadt |
2014-09-08 | Delete procfs; it's always had races and is now unused: no one noticed for | Philip Guenther |
2014-07-13 | KERNEL_ASSERT_LOCKED(9): Assertion for kernel lock (Rev. 3) | Masao Uebayashi |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-07-11 | Use membar_producer() to force visibility instead of misusing | Philip Guenther |
2014-07-08 | decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.h | Theo de Raadt |
2014-07-07 | fork1: FORK_THREAD requires FORK_SHAREFILES | Matthew Dempsky |
2014-07-04 | Track whether a process is a zombie or not yet fully built via flags | Philip Guenther |
2014-05-15 | Move from struct proc to process the reference-count-holding pointers | Philip Guenther |
2014-05-06 | Include <sys/vmmeter.h> directly instead of relying on it being | Martin Pieuchot |
2014-05-04 | Add PS_SYSTEM, the process-level mirror of the thread-level P_SYSTEM, | Philip Guenther |
2014-05-03 | Move the u-area allocation and pmap-magic logic to its own function | Philip Guenther |
2014-04-18 | Have each thread keeps its own (counted!) reference to the process's ucreds | Philip Guenther |
2014-03-30 | Eliminates struct pcred by moving the real and saved ugids into | Philip Guenther |
2014-03-28 | Reduce uvm include madness. Use <uvm/uvm_extern.h> instead of | Martin Pieuchot |
2014-03-26 | Move p_emul and p_sigcode from proc to process. | Philip Guenther |
2014-03-22 | Move p_sigacts from struct proc to struct process. | Philip Guenther |
2014-02-12 | Eliminate the exit sig handling, which was only invokable via the | Philip Guenther |
2014-02-10 | arc4random_uniform() returns a value strictly less than its argument; fix | Philip Guenther |
2014-01-20 | Threads can't be zombies, only processes, so change zombproc to zombprocess, | Philip Guenther |
2014-01-20 | Move p_textvp from struct proc to struct process so that the exit code | Philip Guenther |
2013-10-08 | Fix delivery of SIGPROF and SIGVTALRM to threaded processes by having | Philip Guenther |
2013-08-14 | The last user of the old __tfork() was updated to the current one, | Philip Guenther |
2013-06-11 | convert some easy bcopy to memcpy and clean up fdexpand a bit. | Ted Unangst |
2013-06-06 | Prevent idle thread from being stolen on startup. | Christiano F. Haesbaert |
2013-06-05 | factor out pid allocation to functions. add a small cache of recently | Ted Unangst |
2013-06-03 | When creating a thread, don't add it to the process's thread list | Philip Guenther |
2013-06-03 | Convert some internal APIs to use timespecs instead of timevals | Philip Guenther |
2013-06-01 | As found by kurt, there's a twisty race between exit1 and fork1 | Ted Unangst |
2013-04-06 | rthreads are always enabled. remove the sysctl. | Ted Unangst |
2013-03-14 | the 5.1 era tfork syscall claws its way out of the grave. we failed to | Ted Unangst |
2013-03-02 | No longer need the 5.1 version of the __tfork syscall | Philip Guenther |
2012-11-19 | If uvm_km_kmemalloc_pla() fails when just creating a thread (and not a | Philip Guenthe |
2012-08-02 | Apply profiling to all threads instead of just the thread that called | Philip Guenthe |
2012-06-21 | __tfork() needs to set the stack address of the new thread in the kernel, | Philip Guenthe |
2012-05-10 | Only set a process's start time when starting the main thread. There's | Philip Guenthe |
2012-04-13 | First stab at making ptrace(2) usable for debugging multi-threaded programs. | Mark Kettenis |
2012-04-12 | remove rfork(); ok guenther miod | Theo de Raadt |