Age | Commit message (Expand) | Author |
2015-02-09 | Change the way stackgap_random is applied. Instead of applying it within the | Miod Vallat |
2015-02-09 | Stop using USRSTACK as the edge of the stack, but rather use the vmspace | Miod Vallat |
2015-02-07 | forbid execve() with argc == 0. prompted by a millert email. | Ted Unangst |
2015-01-26 | Move the "stackgap" from the stack into its own page at a random address. | Mark Kettenis |
2015-01-20 | Move ps_strings "after" the random stackgap. This makes its location a | Mark Kettenis |
2015-01-15 | Map the sigcode page with MAP_INHERIT_COPY to make sure it isn't shared ater | Mark Kettenis |
2015-01-15 | Map the sigcode page copy-on-write. This allows userland to put breakpoints | Mark Kettenis |
2014-12-17 | Prefer MADV_* over POSIX_MADV_* in kernel for consistency: the latter | Philip Guenther |
2014-12-16 | primary change: move uvm_vnode out of vnode, keeping only a pointer. | Ted Unangst |
2014-12-15 | Use MAP_INHERIT_* for the 'inh' argument to the UMV_MAPFLAG() macro, | Philip Guenther |
2014-12-10 | convert bcopy to memcpy. ok millert | Ted Unangst |
2014-11-18 | move arc4random prototype to systm.h. more appropriate for most code | Ted Unangst |
2014-11-16 | Replace a plethora of historical protection options with just | Theo de Raadt |
2014-10-18 | Don't assume that ep_taddr and ep_daddr are page-aligned. It is possible to | Mark Kettenis |
2014-09-28 | Replace uvm_km_alloc(9) and uvm_km_free(9) with the equivalent km_alooc(9) | Mark Kettenis |
2014-09-08 | Delete procfs; it's always had races and is now unused: no one noticed for | Philip Guenther |
2014-07-12 | add a size argument to free. will be used soon, but for now default to 0. | Ted Unangst |
2014-07-08 | decouple struct uvmexp into a new file, so that uvm_extern.h and sysctl.h | Theo de Raadt |
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-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-19 | Properly align the stack using _STACKALIGNBYTES, rather that the ALIGN() | Theo de Raadt |
2014-01-21 | bzero -> memset | Ted Unangst |
2014-01-20 | Move p_textvp from struct proc to struct process so that the exit code | Philip Guenther |
2013-06-17 | Add support for the _POSIX_CPUTIME and _POSIX_THREAD_CPUTIME options, | Philip Guenther |
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-08-02 | Apply profiling to all threads instead of just the thread that called | Philip Guenthe |
2012-05-01 | Correct the error path in execve when there's a race to single thread | Philip Guenthe |
2012-04-22 | Add struct proc * argument to FRELE() and FILE_SET_MATURE() in | Philip Guenthe |
2012-04-13 | First stab at making ptrace(2) usable for debugging multi-threaded programs. | Mark Kettenis |
2012-04-12 | move accounting flags to struct process; idea and ok guenther | Mike Belopuhov |
2012-03-26 | clear junk in p_comm before copying shorter names into it | Theo de Raadt |
2012-03-23 | Make rusage totals, itimers, and profile settings per-process instead | Philip Guenthe |
2012-03-09 | New vmmap implementation. | Ariane van der Steldt |
2012-02-20 | First steps for making ptrace work with rthreads: | Philip Guenthe |
2012-02-15 | Hold struct filedesc's fd_lock when writing to the fd_ofiles, fd_ofileflags, | 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-10-16 | TCB address should be reset when execing, to provide a clean setup for | Philip Guenthe |
2011-06-06 | Backout vmmap in order to repair virtual address selection algorithms | Ariane van der Steldt |
2011-05-24 | Reimplement uvm/uvm_map. | Ariane van der Steldt |
2011-04-04 | Move P_EXEC flag from struct proc to process, so that setpgid() will | Philip Guenthe |
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-11-24 | Allow MD code to setup MD-specific mappings (kinda similar to the signal | Miod Vallat |
2010-07-26 | Correct the links between threads, processes, pgrps, and sessions, | Philip Guenthe |
2010-05-18 | move knote list to struct process. ok guenther | Ted Unangst |
2010-01-14 | fix typos in comments, no code changes; | Ingo Schwarze |