Age | Commit message (Expand) | Author |
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 |
2010-07-19 | Rollback the allproclk and fileheadlk addition. When grabbing an | Philip Guenthe |
2010-07-02 | add an align argument to uvm_km_kmemalloc_pla. | Artur Grabowski |
2010-06-30 | style nit | Thordur I. Bjornsson |
2010-06-30 | Move the plimit and pcred bits in fork1() into process_new() and make | Philip Guenthe |
2010-06-29 | We always copy struct pcred when creating a new process, so the reference | Philip Guenthe |
2010-06-29 | Eliminate struct plimit's PL_SHAREMOD flag: it was for COMPAT_IRIX | Philip Guenthe |
2010-06-29 | some late breaking style comments from guenther | Ted Unangst |
2010-06-29 | Eliminate RTHREADS kernel option in favor of a sysctl. The actual status | Ted Unangst |
2010-06-27 | A process on the zombie list can have a NULL p_pgrp if it sleeps when | Philip Guenthe |
2010-05-29 | As noted by art, two processes with the same pid would be bad. Grab | Philip Guenthe |
2010-05-18 | move knote list to struct process. ok guenther | Ted Unangst |
2010-03-24 | Add a rwlock around the filehead and allproc lists, mainly to protect | Ted Unangst |
2010-01-14 | fix typos in comments, no code changes; | Ingo Schwarze |
2009-12-28 | Sanity check flags in fork1(), banning some combos we don't support | Philip Guenthe |
2009-12-23 | The process's rdomain should be, well, per-process and not per-rthread, | Philip Guenthe |
2009-11-27 | Add setrdomain() and getrdomain() system calls. Committing now to | Philip Guenthe |
2009-07-09 | Remove the VREF() macro and replaces all instances with a call to verf(), | Thordur I. Bjornsson |
2009-04-14 | Some tweaks to the cpu affinity code. | Artur Grabowski |
2009-03-23 | Processor affinity for processes. | Artur Grabowski |
2008-11-11 | slightly optimized the ptrace stat allocation to only happen when needed. | Ted Unangst |
2008-11-09 | systrace activation happens in the middle of a rather sensitive piece of | Theo de Raadt |
2008-11-03 | pre-allocate the ptrace_state we may need to tie to the new process | Theo de Raadt |
2008-10-14 | Back-in; problems were apparently elsewhere. | Philip Guenthe |
2008-10-10 | backout; is causing some people difficulty | Theo de Raadt |
2008-10-09 | Put a reference count in struct process to prevent use-after-free | Philip Guenthe |
2008-05-11 | set p_flag to 0 sooner, so we don't overwrite the thread flag. and correctly | Ted Unangst |
2008-05-11 | share signal handlers for rthreads. from philip guenther | Ted Unangst |
2007-10-10 | Make context switching much more MI: | Artur Grabowski |