summaryrefslogtreecommitdiff
path: root/sys/kern/kern_sig.c
AgeCommit message (Expand)Author
2012-01-17Reimplement mutexes, condvars, and rwlocks to eliminate bugs,Philip Guenthe
2011-12-11Suspend other rthreads before dumping core or execing; make them exitPhilip Guenthe
2011-11-22Move struct proc's sigaltstack struct from the zeroed area into theJoshua Elsasser
2011-11-16Make userret() MI. On architectures which jammed stuff into it in theTheo de Raadt
2011-11-09Change fork1() and kthread_create() to match the rest of the treePhilip Guenthe
2011-09-20MD trap() passes a MD "traptype" and siginfo-style "code" up to the MITheo de Raadt
2011-07-11Revert art@'s moving around of the KERNEL_LOCK()/KERNEL_UNLOCK() calls,Philip Guenthe
2011-07-09More syscalls.master cleanup:Matthew Dempsky
2011-07-07There is a bunch of places in the kernel entry points where we don'tArtur Grabowski
2011-07-06Clean up after P_BIGLOCK removal.Artur Grabowski
2011-07-05Recommit the reverted sigacts change now that the NFS use-after-freePhilip Guenthe
2011-04-18Revert the sigacts diff: NFS can apparently retain pointers to processesPhilip Guenthe
2011-04-15Correct the sharing of the signal handling state: stuff that shouldPhilip Guenthe
2011-04-03Move PPWAIT flag from struct proc to process, so that rthreads inPhilip Guenthe
2011-04-02Move P_SUGID and P_SUGIDEXEC from struct proc to struct process, soPhilip Guenthe
2011-03-07The scheduling 'nice' value is per-process, not per-thread, so move itPhilip Guenthe
2010-07-26Correct the links between threads, processes, pgrps, and sessions,Philip Guenthe
2010-07-02remove support for compat_sunos (and m68k4k). ok deraadt guentherTed Unangst
2010-07-01Always identify threads with THREAD_PID_OFFSET, so that there's noPhilip Guenthe
2010-06-30lots of SCARG simplification. ok matthewTed Unangst
2010-06-29Strip out ancient bits in struct user that were still used only byPhilip Guenthe
2010-06-29less SCARG, more pretty. ok guentherTed Unangst
2010-06-29Eliminate RTHREADS kernel option in favor of a sysctl. The actual statusTed Unangst
2010-06-28<sys/time.b> is for ftime(), which is just in libcompat and not the kernel,Philip Guenthe
2010-05-18move knote list to struct process. ok guentherTed Unangst
2009-11-27Convert thrsigdivert to (almost) be sigtimedwait by adding siginfo_tPhilip Guenthe
2009-11-04Get rid of __HAVE_GENERIC_SOFT_INTERRUPTS now that all our platforms support it.Mark Kettenis
2009-06-06We need miod's no-coredumps-on-ramdisks diff, because we have grown theTheo de Raadt
2009-06-05%zu is not meant for size_t in the kernel. Change to %lu.Ray Lai
2009-03-05Make ELF platforms generate ELF core dumps. Somewhat based on code fromMark Kettenis
2009-01-29Remove KASSERT() that could trigger when an rthread in sigwait()Philip Guenthe
2008-12-16Move the functionality of psignal() to a new function ptsignal()Philip Guenthe
2008-10-03Make sigwait() work correctly. In particular, it'll work when thePhilip Guenthe
2008-06-10posix compliant permission checks for sending signals. Based on diffsHans-Joerg Hoexer
2008-05-22Use LIST_FOREACH() instead of handrolling.Thordur I. Bjornsson
2007-11-27typos; ok jmc@Martynas Venckus
2007-11-19Don't overwrite a core file owned by a different user. Makes the codeTodd C. Miller
2007-09-01replace the machine dependant bytes-to-clicks macro by the MI ptoa()Martin Reindl
2007-05-30Adjust filename buffer for the new /var/crash prefix to preventMoritz Jodeit
2007-05-29update comment re nosuidcoredump sysctljoshua stein
2007-05-29put suid coredumps into /var/crash if kern.nosuidcoredump is set to 2.Ted Unangst
2007-05-08Needs an extern decl for generic soft interrupts platforms.Miod Vallat
2007-05-08First step in making the SCHED_LOCK not recursive.Artur Grabowski
2007-04-03Start moving state that is shared among threads in a process intoArtur Grabowski
2007-03-15Since p_flag is often manipulated in interrupts and without biglockArtur Grabowski
2007-02-06Use atomic.h operation for manipulating p_siglist in struct proc. SolvesArtur Grabowski
2007-01-17When sending signals, instead of checking if the process sending theArtur Grabowski
2007-01-16Retire VOP_LEASE(); It was a bit for NQNFS and hasThordur I. Bjornsson
2006-06-15Nothing sets P_FSTRACE anymore, so remove all what's left of it.Miod Vallat
2006-06-07killproc() is orphaned, so kill it; ok deraadt@Miod Vallat