| Commit message (Expand) | Author | Age | Files | Lines |
* | Rename tame() to pledge(). This fairly interface has evolved to be more |  deraadt | 2015-10-09 | 1 | -3/+3 |
* | Add the tame "exec" request. This allows processes which request |  deraadt | 2015-10-07 | 1 | -10/+2 |
* | Only include <sys/tame.h> in the .c files that need it |  guenther | 2015-09-11 | 1 | -1/+2 |
* | fairly simple sizes for free(); ok tedu |  deraadt | 2015-08-28 | 1 | -2/+2 |
* | Move to tame(int flags, char *paths[]) API/ABI. |  deraadt | 2015-08-22 | 1 | -1/+11 |
* | Remove some includes include-what-you-use claims don't |  jsg | 2015-03-14 | 1 | -2/+1 |
* | primary change: move uvm_vnode out of vnode, keeping only a pointer. |  tedu | 2014-12-16 | 1 | -1/+3 |
* | add a size argument to free. will be used soon, but for now default to 0. |  tedu | 2014-07-12 | 1 | -2/+2 |
* | It's init as a process that's special, not init's original thread. |  guenther | 2014-07-11 | 1 | -4/+4 |
* | decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.h |  deraadt | 2014-07-08 | 1 | -4/+2 |
* | Track whether a process is a zombie or not yet fully built via flags |  guenther | 2014-07-04 | 1 | -3/+3 |
* | Fix wait4 to not modify status or rusage if we return 0 because of |  matthew | 2014-06-11 | 1 | -3/+9 |
* | knote_processexit() needs the thread to pass down to FRELE(), so pass it |  guenther | 2014-05-15 | 1 | -6/+6 |
* | Move from struct proc to process the reference-count-holding pointers |  guenther | 2014-05-15 | 1 | -7/+11 |
* | Have each thread keeps its own (counted!) reference to the process's ucreds |  guenther | 2014-04-18 | 1 | -1/+2 |
* | Make sure the original thread is blocked until any other threads are |  guenther | 2014-04-17 | 1 | -5/+4 |
* | Eliminates struct pcred by moving the real and saved ugids into |  guenther | 2014-03-30 | 1 | -4/+3 |
* | Move p_emul and p_sigcode from proc to process. |  guenther | 2014-03-26 | 1 | -4/+4 |
* | Move p_sigacts from struct proc to struct process. |  guenther | 2014-03-22 | 1 | -8/+7 |
* | Eliminate the exit sig handling, which was only invokable via the |  guenther | 2014-02-12 | 1 | -19/+4 |
* | Fix the lock order reversal problem in the code that stops traced |  kettenis | 2014-02-09 | 1 | -1/+3 |
* | exit1() needs to do a final aggregation of the thread's [us]ticks |  guenther | 2014-01-24 | 1 | -1/+6 |
* | Setting p->p_p to NULL when it's still running isn't safe for statclock(). |  guenther | 2014-01-21 | 1 | -2/+1 |
* | Threads can't be zombies, only processes, so change zombproc to zombprocess, |  guenther | 2014-01-20 | 1 | -78/+103 |
* | Move p_textvp from struct proc to struct process so that the exit code |  guenther | 2014-01-20 | 1 | -9/+9 |
* | Move the declarations for dogetrusage(), itimerround(), and dowait4() |  guenther | 2013-10-25 | 1 | -35/+19 |
* | Fix delivery of SIGPROF and SIGVTALRM to threaded processes by having |  guenther | 2013-10-08 | 1 | -3/+1 |
* | Snapshots for all archs have been built, so remove the T32 code |  guenther | 2013-09-14 | 1 | -26/+1 |
* | Switch time_t, ino_t, clock_t, and struct kevent's ident and data |  guenther | 2013-08-13 | 1 | -23/+64 |
* | factor out pid allocation to functions. add a small cache of recently |  tedu | 2013-06-05 | 1 | -1/+2 |
* | some small style changes that are distracting me from seeing a real bug |  tedu | 2013-06-01 | 1 | -12/+11 |
* | Merge from FreeBSD, r191313 |  guenther | 2013-05-07 | 1 | -5/+5 |
* | rthreads are always enabled. remove the sysctl. |  tedu | 2013-04-06 | 1 | -4/+1 |
* | vrele() is a tricky beast. it can sleep if the refcount hits zero, |  tedu | 2013-03-30 | 1 | -5/+10 |
* | do not include machine/cpu.h from a .c file; it is the responsibility of |  deraadt | 2013-03-28 | 1 | -2/+1 |
* | Plug a race where we're trying to kill a traced process while it is aleady |  kettenis | 2012-09-08 | 1 | -4/+5 |
* | Apply profiling to all threads instead of just the thread that called |  guenther | 2012-08-02 | 1 | -3/+3 |
* | exit1(EXIT_THREAD) needs to call single_thread_check() so that it |  guenther | 2012-07-11 | 1 | -1/+3 |
* | The linux emulation exit hook needs to be able to sleep, so call it |  guenther | 2012-07-09 | 1 | -7/+8 |
* | If single threading is active, drirect the SIGKILL signal we send to orphaned |  kettenis | 2012-04-14 | 1 | -2/+11 |
* | Backout a tiny part of the previous commit. Decrementing ps_singlecount in |  kettenis | 2012-04-13 | 1 | -5/+1 |
* | First stab at making ptrace(2) usable for debugging multi-threaded programs. |  kettenis | 2012-04-13 | 1 | -1/+20 |
* | Move the P_WAITED flag from struct proc to struct process. |  kettenis | 2012-04-11 | 1 | -3/+4 |
* | Make the KERN_NPROCS and KERN_MAXPROC sysctl()s and the RLIMIT_NPROC rlimit |  guenther | 2012-04-10 | 1 | -7/+9 |
* | ruadd() does the summing of system and user times, so doing so again |  guenther | 2012-04-06 | 1 | -5/+1 |
* | Make rusage totals, itimers, and profile settings per-process instead |  guenther | 2012-03-23 | 1 | -18/+36 |
* | Add PS_EXITING to better differentiate between the process exiting and |  guenther | 2012-03-10 | 1 | -1/+2 |
* | First steps for making ptrace work with rthreads: |  guenther | 2012-02-20 | 1 | -12/+14 |
* | Reimplement mutexes, condvars, and rwlocks to eliminate bugs, |  guenther | 2012-01-17 | 1 | -3/+3 |
* | Handle rthreads consistently in ktrace by moving the flags and vnode into |  guenther | 2011-12-14 | 1 | -8/+6 |