summaryrefslogtreecommitdiffstats
path: root/sys/kern/syscalls.c
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* Add the lchflags(2) syscall.mux2002-05-051-1/+2
| | | | Reviewed by: rwatson
* Rework the kernel environment subsystem. We now convert the staticmux2002-04-171-0/+1
| | | | | | | | | | | | | | | | | environment needed at boot time to a dynamic subsystem when VM is up. The dynamic kernel environment is protected by an sx lock. This adds some new functions to manipulate the kernel environment : freeenv(), setenv(), unsetenv() and testenv(). freeenv() has to be called after every getenv() when you have finished using the string. testenv() only tests if an environment variable is present, and doesn't require a freeenv() call. setenv() and unsetenv() are self explanatory. The kenv(2) syscall exports these new functionalities to userland, mainly for kenv(1). Reviewed by: peter
* Regenalc2002-04-141-1/+1
|
* Regenalc2002-04-111-1/+1
|
* Part II: update various mechanically generated files to allow for newrwatson2002-03-051-1/+7
| | | | | | | system call number allocations. Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs
* Add stub syscalls and definitions for KSE calls.julian2002-02-191-1/+6
| | | | "Book'em Danno"
* Regenerate these files after change to syscalls.master.deischen2002-02-171-1/+1
|
* Part II: Update system calls for extended attributes. Rebuild ofrwatson2002-02-101-1/+1
| | | | generated files.
* Regenerate to make osigreturn standard.bde2002-02-011-2/+2
|
* Regenerate _after_ the commit to syscalls.master.bde2002-01-301-1/+1
|
* Add nmount() stub function and regenerate the syscall-glue which shouldphk2001-11-021-1/+2
| | | | not need to check in generated files.
* o Update init_sysent.c and friends for allocation of afs_syscall.rwatson2001-10-131-1/+2
|
* o Part two of eaccess(2) commit, rebuilt system call code.rwatson2001-09-211-1/+2
| | | | Obtained from: TrustedBSD Project
* Regeneratepeter2001-09-181-1/+2
|
* Regenerate syscallsdillon2001-09-011-1/+1
|
* regenerate syscallsdillon2001-09-011-1/+1
|
* Regenerate from syscalls.master using the new makesyscalls.sh revision.tmm2001-08-221-1/+1
|
* Regen syscalls that were made mpsafe via vm_mtxalfred2001-05-191-1/+1
| | | | | | obreak, getpagesize, sbrk, sstk, mmap, ovadvise, munmap, mprotect, madvise, mincore, mmap, mlock, munlock, minherit, msync, mlockall, munlockall
* o Regenerated following introduction of __setugid() system call forrwatson2001-04-111-1/+2
| | | | | | "options REGRESSION". Obtained from: TrustedBSD Project
* o Part two of introduction of extattr_{delete,get,set}_fd() system calls,rwatson2001-03-311-1/+4
| | | | | | regenerate necessary automatically-generated code. Obtained from: TrustedBSD Project
* o Rename "namespace" argument to "attrnamespace" as namespace is a C++rwatson2001-03-191-1/+1
| | | | | | | | reserved word. Part 2 of syscalls.master commit to catch rebuilt files. Submitted by: jkh Obtained from: TrustedBSD Project
* Regenerate after rwatson's commit to syscalls.master (rev 1.85)peter2001-03-151-1/+1
|
* Regen.jake2000-12-021-3/+3
|
* sysvipc loadable.alfred2000-12-011-0/+1
| | | | | | new syscall entry lkmressys - "reserved loadable syscall" Make syscall_register allow overwriting of such entries (lkmressys).
* Regen: fix prototypes for {o|}{g|s}etrlimit.marcel2000-08-281-1/+1
|
* Regen. (Fix SYS_exit)peter2000-07-291-2/+2
|
* Regenerate with makesyscalls.shpeter2000-07-291-2/+2
|
* o Commit two of two, introducing __cap_{get,set}_{fd,file} syscalls torwatson2000-07-131-1/+5
| | | | | | modify capability sets on files. Obtained from: TrustedBSD Project
* Second of two commits adding capability manipulation syscalls forrwatson2000-06-151-1/+3
| | | | | | processes. Obtained from: TrustedBSD Project
* Regenerated (fixed the type of mmap()'s padding arg).bde2000-05-091-1/+1
|
* Regenerate (removed semconfig)peter2000-05-011-2/+2
|
* Introduce kqueue() and kevent(), a kernel event notification facility.jlemon2000-04-161-1/+3
|
* Fix bde'isms in acl/extattr syscall interface, renaming syscalls torwatson2000-01-191-9/+9
| | | | | | | | prettier (?) names, adding some const's around here, et al. Commit 2 out of 3. Reviewed by: bde
* Implement setres[ug]id() and getres[ug]id(). This has been sitting inpeter2000-01-161-3/+5
| | | | | | | my tree for ages (~2 years) waiting for an excuse to commit it. Now Linux has implemented it and it seems that Staroffice (when using the linux_base6.1 port's libc) calls this in the linux emulator and dies in setup. The Linux emulator can call these now.
OpenPOWER on IntegriCloud