NetBSD/sys/kern
nathanw 4c99df7fcc Two fixes:
* Change the semantics of proc_unstop() slightly, so that it is
   responsible for making all stopped LWPs runnable, instead of
   all-but-one. Return value is a LWP that can be interrupted if doing
   so is necessary to take a signal. Adjust callers of proc_stop() to
   the new, simpler semantics.

 * When a non-continue signal is delivered to a stopped process and
   there is a LWP sleeping interruptably, call setrunnable() (by way
   of the 'out:' target in psignal1) instead of calling unsleep() so
   that it becomes LSSTOP in issignal() and continuable by
   proc_unstop(). Addresses PR kern/19990 by Martin Husemann, with
   suggestions from enami tsugutomo.
2003-02-07 21:43:18 +00:00
..
Make.tags.inc
Makefile
cnmagic.c
core_elf32.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
core_elf64.c
core_netbsd.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
exec_aout.c Rename __LDPGSZ to AOUT_LDPGSZ, to accurately reflect what it is. 2002-12-10 17:14:02 +00:00
exec_conf.c there is single emul_irix now 2002-11-30 13:19:37 +00:00
exec_ecoff.c fix previous: call vn_marktext() on the right vnode. 2002-10-13 17:37:16 +00:00
exec_elf32.c Two small changes to the ELF exec code: 2003-01-30 20:03:46 +00:00
exec_elf64.c
exec_elf_common.c add support for __MACHINE_STACK_GROWS_UP platforms. from fredette@ 2002-11-17 22:53:46 +00:00
exec_macho.c Load __OBJC and ____CGSERVER sections of Mach-O binaries as __TEXT. 2002-12-11 19:28:41 +00:00
exec_script.c Added support for fingerprinted executables aka verified exec 2002-10-29 12:31:20 +00:00
exec_subr.c Two small changes to the ELF exec code: 2003-01-30 20:03:46 +00:00
genassym.awk
genassym.sh support a variant of the "member" keyword where the symbol defined 2002-11-17 19:24:50 +00:00
genlintstub.awk Gah. I meant Empty. EMPTY!!! 2002-10-23 00:11:00 +00:00
init_main.c add support for p1003.1b semaphores. From FreeBSD 2003-01-20 20:02:56 +00:00
init_sysent.c Regen; reserve slots for <mqueue.h> and <sched.h> system calls. 2003-01-24 01:28:05 +00:00
kern_acct.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
kern_allocsys.c New callout implementation. This is based on callwheel implementation 2003-02-04 01:21:03 +00:00
kern_clock.c New callout implementation. This is based on callwheel implementation 2003-02-04 01:21:03 +00:00
kern_descrip.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
kern_event.c Introduce EVFILT_TIMER, which allows a process to establish an 2003-02-04 09:02:04 +00:00
kern_exec.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
kern_exit.c Call exit_lwps() from exit1() if there is more than one LWP (as 2003-01-27 20:30:32 +00:00
kern_fork.c Add "fork hooks", a'la "exec hooks" and "exit hooks" which allow 2003-01-24 01:42:52 +00:00
kern_kthread.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
kern_ktrace.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
kern_lkm.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
kern_lock.c _simple_lock(): revert to IPL at entry while spinning on the lock; raise 2003-01-19 14:40:55 +00:00
kern_lwp.c Add a KASSERT when copying l1->l_cpu to l2->l_cpu 2003-01-30 05:51:58 +00:00
kern_malloc.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
kern_malloc_debug.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
kern_microtime.c Switch to use cycle counter (%tick) based microtime(). 2003-02-05 12:06:51 +00:00
kern_ntptime.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
kern_physio.c Make the buffer cache code MP-safe. 2003-02-05 21:38:38 +00:00
kern_proc.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
kern_prot.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
kern_ras.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
kern_resource.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
kern_sa.c Fix DIAGNOSTIC printf format. 2003-02-05 15:38:14 +00:00
kern_sig.c Two fixes: 2003-02-07 21:43:18 +00:00
kern_subr.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
kern_synch.c ltsleep(): deal with PNOEXITERR after re-taking the interlock (if necessary). 2003-02-04 20:15:59 +00:00
kern_sysctl.c Add sysconf(3) knobs for recent additions. 2003-02-02 20:33:05 +00:00
kern_systrace.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
kern_time.c itimerfire(): fix bug in previous - if two or more timers would 2003-02-04 15:50:06 +00:00
kern_timeout.c Format fix for archs where ptrdiff_t != int. 2003-02-04 10:14:53 +00:00
kern_verifiedexec.c * Don't keep evaluating fingerprint if there is no fingerprints for the 2002-11-12 12:54:36 +00:00
kern_xxx.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
kgdb_stub.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
makesyscalls.sh Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
subr_autoconf.c move #include <sys/reboot.h> with the rest of the <sys/...> headers. 2003-01-02 00:12:16 +00:00
subr_devsw.c in devsw_name2blk(), as we use strncmp(), make sure the next character 2003-02-01 11:12:35 +00:00
subr_disk.c Factor out the COMPAT_16 code. 2002-11-06 02:31:34 +00:00
subr_extent.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
subr_log.c si_ -> sel_ to avoid conflicts with siginfo. 2002-11-26 18:44:34 +00:00
subr_pool.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
subr_prf.c Add aprint_error(), which is like aprint_normal(), but also records 2002-12-31 23:45:36 +00:00
subr_prof.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
subr_prop.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
subr_userconf.c Remove some variables that are set but not used. 2002-10-22 03:27:47 +00:00
subr_xxx.c
sys_generic.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
sys_pipe.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
sys_pmc.c Make this compile again on i386 by avoiding an unused variable 2003-01-20 01:40:48 +00:00
sys_process.c PT_DUMPCORE support. 2003-01-23 17:35:18 +00:00
sys_socket.c writable, not writeable. 2003-01-06 20:30:28 +00:00
syscalls.c Regen; reserve slots for <mqueue.h> and <sched.h> system calls. 2003-01-24 01:28:05 +00:00
syscalls.conf
syscalls.master Reserve slots for the p1003.1b scheduler system calls. 2003-01-24 01:27:21 +00:00
sysv_ipc.c
sysv_msg.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
sysv_sem.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
sysv_shm.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
tty.c XXX ttioctl(): some drivers call back on us from t_param(), so delay acquiring 2003-02-06 12:21:21 +00:00
tty_conf.c /*CONTCOND*/ while (0)'ed macros 2002-11-02 07:20:42 +00:00
tty_pty.c Make the tty subsystem MP-safe.. 2003-02-05 15:49:02 +00:00
tty_subr.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
tty_tb.c
tty_tty.c merge kqueue branch into -current 2002-10-23 09:10:23 +00:00
uipc_domain.c
uipc_mbuf.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
uipc_mbuf2.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
uipc_proto.c
uipc_sem.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
uipc_socket.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
uipc_socket2.c merge kqueue branch into -current 2002-10-23 09:10:23 +00:00
uipc_syscalls.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
uipc_usrreq.c no need for error check after MEXTMALLOC - jdolecek 2002-11-25 08:31:58 +00:00
vfs_bio.c bdwrite(): remove check for MFS major device number (why was 255 changed 2003-02-06 11:46:49 +00:00
vfs_cache.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
vfs_getcwd.c Merge the nathanw_sa branch. 2003-01-18 10:06:22 +00:00
vfs_init.c
vfs_lockf.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
vfs_lookup.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
vfs_subr.c Make the buffer cache code MP-safe. 2003-02-05 21:38:38 +00:00
vfs_syscalls.c Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
vfs_vnops.c Check for (and deny) negative values passed to FIOGETBMAP. 2003-02-01 07:23:56 +00:00
vnode_if.c regen: kqueue branch merge, addition of VOP_KQFILTER() 2002-10-23 09:16:46 +00:00
vnode_if.sh
vnode_if.src merge kqueue branch into -current 2002-10-23 09:10:23 +00:00