summaryrefslogtreecommitdiff
path: root/sys/kern/kern_sig.c
AgeCommit message (Expand)Author
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
2006-03-04Remove traditional coredump support since all our platforms have properMiod Vallat
2006-02-20Compile out more rthreads stuff unless option RTHREADS;Miod Vallat
2006-01-18Fix logic botch when checking for COMPAT_SUNOS binary specifics; repairsMiod Vallat
2005-12-221. when signalling a process group, don't deliver a copy to every threadTed Unangst
2005-12-03kernel support for threaded processes (rthreads).Ted Unangst
2005-11-28ansi/deregister.Jonathan Gray
2005-06-17A second approach at fixing the telnet localhost & problemNiklas Hallqvist
2005-05-29sched work by niklas and art backed out; causes panicsTheo de Raadt
2005-05-25This patch is mortly art's work and was done *a year* ago. Art wants to thankNiklas Hallqvist
2004-12-26Use list and queue macros where applicable to make the code easier to read;Miod Vallat
2004-07-04proc_stop needs sched_lock locked. From art, verified with NetBSD.Niklas Hallqvist
2004-06-13debranch SMP, have funNiklas Hallqvist
2004-04-06fix siginfo generation for posted signals and avoid double ktrpsig() call for...Michael Shalayeff
2004-01-14change sigaltstack.ss_size type to size_t. handle syscall fallout.Ted Unangst
2003-09-01match syscallargs comments with realityHenning Brauer
2003-08-15change arguments to suser. suser now takes the process, and a flagsTed Unangst
2003-08-04Use strlcpy(), not strncpy() when copying p->p_comm to core.c_nameTodd C. Miller
2003-08-03Implement the WCONTINUED flag to the wait(2) family of syscalls and theTodd C. Miller
2003-07-21remove caddr_t casts. it's just silly to cast something when the functionTed Unangst
2003-06-02Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
2003-05-03string fixes; tedu okTheo de Raadt
2002-10-01Oppsie. Missing part from this commit:Artur Grabowski
2002-07-14be more permissive, and let close relatives do SIGALRMTheo de Raadt
2002-06-11Protect mi_switch with splstatclock.Artur Grabowski
2002-05-08A process can always signal itself--no need to restrict signals even ifTodd C. Miller
2002-04-18Provide the correct signal number to the ktrace PSIG information insteadMiod Vallat
2002-03-14First round of __P removal in sysTodd C. Miller
2002-02-22include a siginfo_t with ktrace PSIG information, so that kdump can printTheo de Raadt
2002-01-31Ignore signals if/when we are exiting.Tobias Weingartner
2002-01-23Pool deals fairly well with physical memory shortage, but it doesn't dealArtur Grabowski
2002-01-19If handler for SIGCHLD is SIG_IGN, reset to SIG_DLF. This is consistentTodd C. Miller
2002-01-07If the handler for SIGCHLD is set to SIG_IGN, act as if theTodd C. Miller
2001-11-06Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary.Miod Vallat
2001-09-21execsigs() could modify the wrong sigacts; based on David.Arana@eng.sun.com s...Theo de Raadt
2001-09-20cosmetic.Artur Grabowski
2001-08-09Unshare signal actions on exec, from NetBSD. While I am here a little KNF ni...Niklas Hallqvist