summaryrefslogtreecommitdiffstats
path: root/sys/kern/syscalls.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Give kldunload a -f(orce) argument.phk2004-07-131-1/+2
| | | | | | | | | | | | | | | | | Add a MOD_QUIESCE event for modules. This should return error (EBUSY) of the module is in use. MOD_UNLOAD should now only fail if it is impossible (as opposed to inconvenient) to unload the module. Valid reasons are memory references into the module which cannot be tracked down and eliminated. When kldunloading, we abandon if MOD_UNLOAD fails, and if -force is not given, MOD_QUIESCE failing will also prevent the unload. For backwards compatibility, we treat EOPNOTSUPP from MOD_QUIESCE as success. Document that modules should return EOPNOTSUPP for unknown events.
* Regen.marcel2004-07-021-1/+1
|
* Regenerate after updating syscalls.master.rwatson2004-06-221-1/+1
|
* Rebuild following marking link() as MPSAFE.rwatson2004-06-221-1/+1
|
* Regen.dfr2004-04-051-2/+2
|
* Regen for libthr thread synchronization syscalls.mtm2004-03-271-1/+3
|
* Nudge Giant as far as I can into kern_open(). Mark open() as MPSAFE.dwmalone2004-03-161-1/+1
| | | | | | | | Use kern_open() to implement creat() rather than taking the long route through open(). Mark creat as MPSAFE. While I'm at it, mark nosys() (syscall 0) as MPSAFE, for all the difference it will make.
* Regen for ptrace being safe again.jhb2004-03-151-1/+1
|
* Regen for mpsafe kse_create()peter2004-03-131-1/+1
|
* Regen after adding ksem_timedwait().deischen2004-02-031-1/+2
|
* Regen - this should be essentially a NOP, except for rcsid changes.peter2003-12-231-1/+1
|
* Regenpeter2003-12-101-1/+1
|
* Regen due to kse_switchin(2).marcel2003-12-071-1/+2
|
* - regen.jeff2003-11-141-1/+1
|
* Update the five files derived from /sys/kern/syscalls.mastermckusick2003-11-121-9/+9
| | | | | | | | | after the additions made for the new statfs structure (version 1.157). These must be updated in a separate checkin after syscalls.master has been checked in so that they reflect its new CVS identity. As these are purely derived files, it is not clear to me why they are under CVS at all. I presume that it has something to do with having `make world' operate properly.
* Regen.jhb2003-11-071-1/+1
|
* Don peril-sensitive sunglasses and mark pipe(2) as MPSAFE. I've beaten upscottl2003-10-211-1/+1
| | | | | on it for the last 15 hours with no signs of problems. It gives a small (1%) gain on buildworld since pipe_read/pipe_write are already free of Giant.
* Mark dup as MPSAFE. Giant was pushed into dup ages ago, but it looksdwmalone2003-10-201-1/+1
| | | | | | like it was missed in syscalls.master. Spotted by: alc
* msync(2) should be declared MP-safe.alc2003-09-071-1/+1
|
* o Refine kse_thr_interrupt to allow it to handle different commands.davidxu2003-07-171-1/+1
| | | | | | | o Remove TDF_NOSIGPOST. o Add a member td_waitset to proc structure, it will be used for sigwait. Tested by: deischen
* Regen from syscalls.master:1.149, addition of extended attributerwatson2003-06-041-1/+4
| | | | list system calls for fd, file, link.
* Regen.mike2003-04-091-1/+2
|
* - Regen.jeff2003-04-011-1/+1
|
* - Regen for umtx.jeff2003-04-011-1/+3
|
* - Regen for thr related system calls.jeff2003-04-011-1/+5
|
* - Regen for the sig*wait* system calls.jeff2003-03-311-3/+4
|
* Add a timeout parameter to kse_release.davidxu2003-02-201-1/+1
|
* Some KSE syscalls are MPSAFE.davidxu2003-01-081-1/+1
|
* Regen from syscalls.master:1.139rwatson2002-12-291-1/+5
|
* Regenerate system calls (swapoff added)dillon2002-12-151-1/+2
|
* Regenerate after adding system calls.deischen2002-11-161-1/+4
|
* Regen.rwatson2002-11-051-2/+2
|
* Regen from yesterday's system call placeholder rename.rwatson2002-11-021-2/+2
|
* The syscall names are string constants, so make them consts.dwmalone2002-10-291-2/+2
|
* Split 4.x and 5.x signal handling so that we can keep 4.x signalpeter2002-10-251-5/+5
| | | | | | | | | | | | | | | | handling clean and functional as 5.x evolves. This allows some of the nasty bandaids in the 5.x codepaths to be unwound. Encapsulate 4.x signal handling under COMPAT_FREEBSD4 (there is an anti-foot-shooting measure in place, 5.x folks need this for a while) and finish encapsulating the older stuff under COMPAT_43. Since the ancient stuff is required on alpha (longjmp(3) passes a 'struct osigcontext *' to the current sigreturn(2), instead of the 'ucontext_t *' that sigreturn is supposed to take), add a compile time check to prevent foot shooting there too. Add uniform COMPAT_43 stubs for ia64/sparc64/powerpc. Tested on: i386, alpha, ia64. Compiled on sparc64 (a few days ago). Approved by: re
* Regen.rwatson2002-10-221-4/+10
|
* Regen from addition of execve_mac placeholder.rwatson2002-10-191-1/+1
|
* Regen from syntax fix to syscalls.master.rwatson2002-10-101-1/+1
| | | | | | | | | PR: Submitted by: Reviewed by: Approved by: Obtained from: MFC after:
* Regen.rwatson2002-10-091-4/+4
|
* Regen.rwatson2002-10-011-1/+7
|
* Make the following name changes to KSE related functions, etc., to betterarchie2002-09-251-3/+3
| | | | | | | | | | | | | | | represent their purpose and minimize namespace conflicts: kse_fn_t -> kse_func_t struct thread_mailbox -> struct kse_thr_mailbox thread_interrupt() -> kse_thr_interrupt() kse_yield() -> kse_release() kse_new() -> kse_create() Add missing declaration of kse_thr_interrupt() to <sys/kse.h>. Regenerate the various generated syscall files. Minor style fixes. Reviewed by: julian
* Regen for added syscalls.alfred2002-09-191-0/+14
|
* Regen.rwatson2002-08-191-1/+1
|
* Regen.rwatson2002-08-061-2/+2
|
* Regen.rwatson2002-07-311-1/+1
|
* Regen.rwatson2002-07-301-1/+2
|
* Rebuild of files generated from syscalls.master.rwatson2002-07-301-7/+7
| | | | | Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs
* regen for freebsd4_sendfile(2) compat.alfred2002-07-121-2/+3
|
* Regen.rwatson2002-06-131-7/+7
|
* Add uuidgen(2) and uuidgen(1).marcel2002-05-281-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The uuidgen command, by means of the uuidgen syscall, generates one or more Universally Unique Identifiers compatible with OSF/DCE 1.1 version 1 UUIDs. From the Perforce logs (change 11995): Round of cleanups: o Give uuidgen() the correct prototype in syscalls.master o Define struct uuid according to DCE 1.1 in sys/uuid.h o Use struct uuid instead of uuid_t. The latter is defined in sys/uuid.h but should not be used in kernel land. o Add snprintf_uuid(), printf_uuid() and sbuf_printf_uuid() to kern_uuid.c for use in the kernel (currently geom_gpt.c). o Rename the non-standard struct uuid in kern/kern_uuid.c to struct uuid_private and give it a slightly better definition for better byte-order handling. See below. o In sys/gpt.h, fix the broken uuid definitions to match the now compliant struct uuid definition. See below. o In usr.bin/uuidgen/uuidgen.c catch up with struct uuid change. A note about byte-order: The standard failed to provide a non-conflicting and unambiguous definition for the binary representation. My initial implementation always wrote the timestamp as a 64-bit little-endian (2s-complement) integral. The clock sequence was always written as a 16-bit big-endian (2s-complement) integral. After a good nights sleep and couple of Pan Galactic Gargle Blasters (not necessarily in that order :-) I reread the spec and came to the conclusion that the time fields are always written in the native by order, provided the the low, mid and hi chopping still occurs. The spec mentions that you "might need to swap bytes if you talk to a machine that has a different byte-order". The clock sequence is always written in big-endian order (as is the IEEE 802 address) because its division is resulting in bytes, making the ordering unambiguous.
OpenPOWER on IntegriCloud