Age | Commit message (Expand) | Author |
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 |
2007-07-25 | Back out the tracking of procs in struct selinfo. There's one serious | Artur Grabowski |
2007-05-16 | The world of __HAVEs and __HAVE_NOTs is reducing. All architectures | Artur Grabowski |
2007-04-12 | move p_limit and p_cred into struct process | Ted Unangst |
2007-04-03 | Start moving state that is shared among threads in a process into | Artur Grabowski |
2007-03-24 | Kill the horrible hack of storing the pid in struct selinfo. | Artur Grabowski |
2007-03-15 | Since p_flag is often manipulated in interrupts and without biglock | Artur Grabowski |
2007-01-17 | reintroduce rev 1.83 -- put the new process on the proc lists | Michael Shalayeff |
2006-11-29 | Kernel stack can be swapped. This means that stuff that's on the stack | Miod Vallat |
2006-04-30 | Backout last commit, it makes us crash when a ptraced program forks. | Mark Kettenis |
2006-03-27 | do not rush putting embrionic process on child/thread/sibling lists and set t... | Michael Shalayeff |
2006-02-20 | Compile out more rthreads stuff unless option RTHREADS; | Miod Vallat |
2005-12-22 | fix memory leak conditions in thrsleep and significantly simplify | Ted Unangst |
2005-12-04 | forgot to set P_THREAD for threaded processes | Ted Unangst |
2005-12-03 | kernel support for threaded processes (rthreads). | Ted Unangst |
2005-11-02 | Avoid a theoretical race condition. | Aaron Campbell |
2005-09-14 | ptrace(2) following fork(2) | Mark Kettenis |