Age | Commit message (Expand) | Author |
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 |
2012-04-12 | move accounting flags to struct process; idea and ok guenther | Mike Belopuhov |
2012-04-10 | Make the KERN_NPROCS and KERN_MAXPROC sysctl()s and the RLIMIT_NPROC rlimit | Philip Guenthe |
2012-03-23 | Make rusage totals, itimers, and profile settings per-process instead | Philip Guenthe |
2012-02-20 | First steps for making ptrace work with rthreads: | Philip Guenthe |
2011-12-14 | Handle rthreads consistently in ktrace by moving the flags and vnode into | Philip Guenthe |
2011-11-22 | Move struct proc's sigaltstack struct from the zeroed area into the | Joshua Elsasser |
2011-11-09 | Change fork1() and kthread_create() to match the rest of the tree | Philip Guenthe |
2011-11-05 | I had moved earlier the adding of processes to the pgrp and children lists | Philip Guenthe |
2011-10-15 | "TLS-lite": add kernel support for a per-thread userspace pointer, | Philip Guenthe |
2011-07-07 | Functions used in files other than where they are defined should be | Philip Guenthe |
2011-07-06 | Clean up after P_BIGLOCK removal. | Artur Grabowski |
2011-06-06 | push kernel malloc(9) and kernel stacks into non-dma memory, since that | Theo de Raadt |
2011-04-03 | Move PPWAIT flag from struct proc to process, so that rthreads in | Philip Guenthe |
2011-04-02 | Move P_SUGID and P_SUGIDEXEC from struct proc to struct process, so | Philip Guenthe |
2010-10-31 | The return of rfork(RFTHREAD) must be consistent with getthrid(). | Philip Guenthe |
2010-07-26 | Correct the links between threads, processes, pgrps, and sessions, | Philip Guenthe |
2010-07-23 | Make sure the u area of new processes is zero-filled; this got lost in | Miod Vallat |