aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/kern_syscalls.c
Commit message (Expand)AuthorAgeFilesLines
* Move syscall_thread_{enter,exit}() into the slow path. This is onlyEdward Tomasz Napierala2020-11-081-2/+8
* add a sanity check to the system call registration codeAndriy Gapon2019-12-111-3/+6
* fix a typo resulting in a wrong variable in kern_syscall_deregisterAndriy Gapon2018-08-021-1/+1
* Avoid calls to syscall_thread_enter/exit for statically defined syscallsMateusz Guzik2018-05-071-6/+2
* Reduce duplication in dynamic syscall registration code.Brooks Davis2018-02-201-20/+47
* sys/kern: adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
* Implement lockless resource limits.Mateusz Guzik2015-06-101-0/+1
* Generalised support for copy-on-write structures shared by threads.Mateusz Guzik2015-06-101-0/+2
* Fix up module unload for syscall_module_handler consumers.Mateusz Guzik2014-11-011-1/+1
* Avoid dynamic syscall overhead for statically compiled modules.Mateusz Guzik2014-10-261-9/+17
* Call chainevh callback when we are invoked with neither MOD_LOAD norXin LI2010-10-211-1/+3
* In syscall_module_handler(): all switch branches return, removeXin LI2010-10-211-4/+1
* Count number of threads that enter and leave dynamically registeredKonstantin Belousov2010-06-281-1/+55
* Introduce SYSCALL_INIT_HELPER and SYSCALL32_INIT_HELPER macros andKonstantin Belousov2010-03-191-0/+30
* Various style fixes. 7 space indent is just odd.John Baldwin2008-09-181-74/+74
* Make system call modules a bit more robust:John Baldwin2006-08-011-1/+11
* Do a pass over all modules in the kernel and make them return EOPNOTSUPPPoul-Henning Kamp2004-07-151-0/+3
* Use __FBSDID().David E. O'Brien2003-06-111-2/+3
* - Lock down the ``module'' structure by adding an SX lock that is used byAndrew R. Reiter2002-03-181-0/+5
* KSE Milestone 2Julian Elischer2001-09-121-4/+4
* sysvipc loadable.Alfred Perlstein2000-12-011-1/+8
* Trim unused options (or #ifdef for undoc options).Peter Wemm1999-10-111-5/+0
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
* Call the chained module handler before unregistering the syscall so thatDoug Rabson1999-06-271-5/+12
* Move lkmnosys() from kern_lkm.c to here.Peter Wemm1999-01-171-1/+13
* Implement a mechanism for a module to report a small amount of moduleDoug Rabson1999-01-091-1/+4
* Implement support for adding syscalls in KLD modules.Doug Rabson1999-01-091-0/+94