Age | Commit message (Expand) | Author |
2015-03-14 | Remove some includes include-what-you-use claims don't | Jonathan Gray |
2014-12-16 | primary change: move uvm_vnode out of vnode, keeping only a pointer. | Ted Unangst |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-07-11 | It's init as a process that's special, not init's original thread. | 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-04 | Track whether a process is a zombie or not yet fully built via flags | Philip Guenther |
2014-06-11 | Fix wait4 to not modify status or rusage if we return 0 because of | Matthew Dempsky |
2014-05-15 | knote_processexit() needs the thread to pass down to FRELE(), so pass it | Philip Guenther |
2014-05-15 | Move from struct proc to process the reference-count-holding pointers | Philip Guenther |
2014-04-18 | Have each thread keeps its own (counted!) reference to the process's ucreds | Philip Guenther |
2014-04-17 | Make sure the original thread is blocked until any other threads are | Philip Guenther |
2014-03-30 | Eliminates struct pcred by moving the real and saved ugids into | Philip Guenther |
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-09 | Fix the lock order reversal problem in the code that stops traced | Mark Kettenis |
2014-01-24 | exit1() needs to do a final aggregation of the thread's [us]ticks | Philip Guenther |
2014-01-21 | Setting p->p_p to NULL when it's still running isn't safe for statclock(). | 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-25 | Move the declarations for dogetrusage(), itimerround(), and dowait4() | Philip Guenther |
2013-10-08 | Fix delivery of SIGPROF and SIGVTALRM to threaded processes by having | Philip Guenther |
2013-09-14 | Snapshots for all archs have been built, so remove the T32 code | Philip Guenther |
2013-08-13 | Switch time_t, ino_t, clock_t, and struct kevent's ident and data | Philip Guenther |
2013-06-05 | factor out pid allocation to functions. add a small cache of recently | Ted Unangst |
2013-06-01 | some small style changes that are distracting me from seeing a real bug | Ted Unangst |
2013-05-07 | Merge from FreeBSD, r191313 | Philip Guenther |
2013-04-06 | rthreads are always enabled. remove the sysctl. | Ted Unangst |
2013-03-30 | vrele() is a tricky beast. it can sleep if the refcount hits zero, | Ted Unangst |
2013-03-28 | do not include machine/cpu.h from a .c file; it is the responsibility of | Theo de Raadt |
2012-09-08 | Plug a race where we're trying to kill a traced process while it is aleady | Mark Kettenis |
2012-08-02 | Apply profiling to all threads instead of just the thread that called | Philip Guenthe |
2012-07-11 | exit1(EXIT_THREAD) needs to call single_thread_check() so that it | Philip Guenthe |
2012-07-09 | The linux emulation exit hook needs to be able to sleep, so call it | Philip Guenthe |
2012-04-14 | If single threading is active, drirect the SIGKILL signal we send to orphaned | Mark Kettenis |
2012-04-13 | Backout a tiny part of the previous commit. Decrementing ps_singlecount in | Mark Kettenis |
2012-04-13 | First stab at making ptrace(2) usable for debugging multi-threaded programs. | Mark Kettenis |
2012-04-11 | Move the P_WAITED flag from struct proc to struct process. | Mark Kettenis |
2012-04-10 | Make the KERN_NPROCS and KERN_MAXPROC sysctl()s and the RLIMIT_NPROC rlimit | Philip Guenthe |
2012-04-06 | ruadd() does the summing of system and user times, so doing so again | Philip Guenthe |
2012-03-23 | Make rusage totals, itimers, and profile settings per-process instead | Philip Guenthe |
2012-03-10 | Add PS_EXITING to better differentiate between the process exiting and | Philip Guenthe |
2012-02-20 | First steps for making ptrace work with rthreads: | Philip Guenthe |
2012-01-17 | Reimplement mutexes, condvars, and rwlocks to eliminate bugs, | Philip Guenthe |
2011-12-14 | Handle rthreads consistently in ktrace by moving the flags and vnode into | Philip Guenthe |
2011-12-11 | Suspend other rthreads before dumping core or execing; make them exit | Philip Guenthe |
2011-07-25 | sys_wait4 properly returns int. ok deraadt | Ted Unangst |
2011-07-06 | Clean up after P_BIGLOCK removal. | Artur Grabowski |
2011-07-05 | Recommit the reverted sigacts change now that the NFS use-after-free | Philip Guenthe |
2011-04-18 | Revert the sigacts diff: NFS can apparently retain pointers to processes | Philip Guenthe |