summaryrefslogtreecommitdiffstats
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* Move getosreldate(3) prototype from the machine generated <osreldate.h>peter2008-09-262-10/+2
| | | | | | to <unistd.h> in the BSD section. Suggested by: kib
* Re-add getosreldate(3) function prototype in the form that I've been usingpeter2008-09-261-1/+10
| | | | | | for quite some time now. While I'm not sure if it'll break IA64 again, this way doesn't cause problems with my builds of XFree86/Xorg and the way they #include <osreldate.h> via cpp in the imake system.
* Add missing prototypes for uuid_enc,dec_le,be() functions.emax2008-09-151-0/+4
| | | | | | Pointy hat goes to me. MFC after: 3 days
* Fix TELOPT(opt) when opt > TELOPT_TN3270E.antoine2008-09-131-2/+2
| | | | | | PR: 127194 Submitted by: Joost Bekkers MFC after: 1 month
* Initialise the SVCAUTH field for new transport structures when they aredfr2008-09-091-0/+2
| | | | | | | allocated instead of waiting for the first request. This fixes an issue with rpcbind's support for PMAPPROC_CALLIT. Reviewed by: markm
* Implement cproj{,f,l}().das2008-08-071-0/+4
|
* Annotate creal(), cimag(), and conj() with __pure2.das2008-08-071-9/+10
|
* Add an implementation of the RPCSEC_GSS authentication protocol for RPC. Thisdfr2008-08-065-3/+248
| | | | | | | | is based on an old implementation from the University of Michigan with lots of changes and fixes by me and the addition of a Solaris-compatible API. Sponsored by: Isilon Systems Reviewed by: alfred
* Remove <sgtty.h> now it has no practical usage.ed2008-07-252-4/+1
| | | | | | | | | | When I turned sgtty into a binary-only interface (last month), I added this explicit #error to the header file, to make sure nobody forgot to remove the header file after updating world. I think it is now a good moment to remove this header file. Approved by: philip (mentor)
* Add arc4random_uniform()ache2008-07-221-0/+2
| | | | Obtained from: OpenBSD
* Add arc4random_buf.ache2008-07-211-1/+2
| | | | Style: remove arg names from arc4random_addrandom.
* posix_spawn() is supported, set _POSIX_SPAWN to 200212L.davidxu2008-07-081-1/+1
|
* Turn execvpe() into an internal libc routine.ed2008-06-231-1/+0
| | | | | | | | | | | | Adding exevpe() has caused some ports to break. Even though execvpe() is a useful routine, it does not conform to any standards. This patch is a little bit different from the patch sent to the mailing list. I forgot to remove execvpe from the Symbol.map (which does not seem to miscompile libc, though). Reviewed by: davidxu Approved by: philip
* Remove __restrict keywords from array arguments to make GCC's -std=c99 work.ed2008-06-191-2/+5
| | | | | | | | | | | | | | | | | When GCC is invoked with -std=c99, the following errors are displayed when including <spawn.h>: /usr/include/spawn.h:69: error: static or type qualifiers in abstract declarator /usr/include/spawn.h:69: error: static or type qualifiers in abstract declarator /usr/include/spawn.h:72: error: static or type qualifiers in abstract declarator /usr/include/spawn.h:72: error: static or type qualifiers in abstract declarator We'd better remove the __restrict keywords here. The same is also done in <regex.h>. Submitted by: Andrzej Tobola <ato iem pw edu pl> Reviewed by: davidxu Approved by: philip (mentor, implicit)
* Change my email address to the one from the FreeBSD project.ed2008-06-171-1/+1
| | | | Approved by: philip (mentor, implicit), davidxu
* Add POSIX routines called posix_spawn() and posix_spawnp(), whichdavidxu2008-06-173-1/+117
| | | | | | | | | can be used as replacements for exec/fork in a lot of cases. This change also added execvpe() which allows environment variable PATH to be used for searching executable file, it is used for implementing posix_spawnp(). PR: standards/122051
* Turn sgtty into a binary-only compatibility interface.ed2008-06-141-39/+3
| | | | | | | | | | | | | | | | sgtty was the original interface to configure terminal attributes on my UNIX-like operating systems. It has been deprecated by the POSIX termios interface, which is implemented in almost any modern system. An advantage of turning this into a binary compatibility interface, is that we can now eventually remove the COMPAT_43TTY switch from kernel configurations. This removes many ioctl()'s from the TTY layer. While there, increase the __FreeBSD_version, which may be useful for the people working on the Ports tree. Reviewed by: kib Approved by: philip (mentor)
* Make pthread_cleanup_push() and pthread_cleanup_pop() as a pair of macros,davidxu2008-06-091-2/+21
| | | | | | | use stack space to keep cleanup information, this eliminates overhead of calling malloc() and free() in thread library. Discussed on: thread@
* Remove ISDN4BSD (I4B) from HEAD as it is not MPSAFE andbz2008-05-261-15/+0
| | | | | | | | | | | | | | | | | | parts relied on the now removed NET_NEEDS_GIANT. Most of I4B has been disconnected from the build since July 2007 in HEAD/RELENG_7. This is what was removed: - configuration in /etc/isdn - examples - man pages - kernel configuration - sys/i4b (drivers, layers, include files) - user space tools - i4b support from ppp - further documentation Discussed with: rwatson, re
* Remove netatm from HEAD as it is not MPSAFE and relies on the now removedrwatson2008-05-251-2/+0
| | | | | | | | | | | | | | | | | | | NET_NEEDS_GIANT. netatm has been disconnected from the build for ten months in HEAD/RELENG_7. Specifics: - netatm include files - netatm command line management tools - libatm - ATM parts in rescue and sysinstall - sample configuration files and documents - kernel support as a module or in NOTES - netgraph wrapper nodes for netatm - ctags data for netatm. - netatm-specific device drivers. MFC after: 3 weeks Reviewed by: bz Discussed with: bms, bz, harti
* Expand dump to allow MAX_INT dump levels.mckusick2008-05-241-9/+0
| | | | | PR: bin/100732 Submitted by: Matthew Vincenz <msvincen@midway.uchicago.edu>
* Make this c++ compatible.dfr2008-05-161-0/+4
| | | | PR: 87726
* Add definition for OM_uint64.dfr2008-05-151-0/+1
| | | | Submitted by: tmclaugh
* Define the size_t type since readpassphrase(3) requires it in itsscf2008-05-081-0/+6
| | | | | | | definition and sys/types.h is not listed within the synopsis of the man page. MFC after: 1 week
* Tag FILE's _bf as being part of the public ABI as well due to the in-treejhb2008-05-071-1/+1
| | | | sort(1) referencing it.
* Fix conflicts after heimdal-1.1 import and add build infrastructure. Importdfr2008-05-071-13/+94
| | | | all non-style changes made by heimdal to our own libgssapi.
* Install the mpilib headers from mpt(4) into /usr/include/dev/mpt/mpilib.jhb2008-05-071-1/+3
| | | | | | This allows <sys/mpt_ioctl.h> to be used from userland. Prodded by: scottl
* Retire the __fgetcookie(), __fgetpendout(), and __fsetfileno() accessorsjhb2008-05-051-6/+0
| | | | as we aren't hiding FILE's internals anymore.
* Note that FILE's __cookie is also part of the public ABI.jhb2008-05-051-1/+1
|
* Expose FILE's internals to the world again in all their glory. Restorejhb2008-05-051-4/+172
| | | | | all the previous inline optimizations as well. FILE is back to using __mbstate_t, struct pthread *, and struct pthread_mutex *.
* Unbreak build: gnu sort has been configured to grope inside structmarcel2008-05-031-0/+3
| | | | | | | __sFILE. It's opaque now, so add a function that returns the pending output bytes. Pointy hat: jhb
* Unbreak build: libftpio gropes inside struct __sFILE. Implementmarcel2008-05-031-0/+3
| | | | | | | | accessor functions for its benefit now thaat FILE is opaque. I'm sure there's a better way. I leave that for people to work on in a src tree that isn't broken. Pointy hat: jhb
* Axe now-empty __BSD_VISIBLE block that held renameat().jhb2008-05-021-2/+0
| | | | | Reported by: kib Pointy hat: jhb
* - Move declaration of renameat() to the existing section of BSD_VISIBLEjhb2008-05-021-6/+6
| | | | | | | function prototypes. - Fix a few whitespace inconsistencies in prototypes. MFC after: 1 month
* Next round of stdio changes: Remove all inlining of stdio operations andjhb2008-05-021-172/+4
| | | | | | | | | | | | | | | | move the definition of the type backing FILE (struct __sFILE) into an internal header. - Remove macros to inline certain operations from stdio.h. Applications will now always call the functions instead. - Move the various foo_unlocked() functions from unlocked.c into foo.c. This lets some of the inlining macros (e.g. __sfeof()) move into foo.c. - Update a few comments. - struct __sFILE can now go back to using mbstate_t, pthread_t, and pthread_mutex_t instead of knowing about their private, backing types. MFC after: 1 month Reviewed by: kan
* Next stage of stdio cleanup: Retire __sFILEX and merge the fields back intojhb2008-04-171-4/+7
| | | | | | | | | | | | | | | | | | | __sFILE. This was supposed to be done in 6.0. Some notes: - Where possible I restored the various lines to their pre-__sFILEX state. - Retire INITEXTRA() and just initialize the wchar bits (orientation and mbstate) explicitly instead. The various places that used INITEXTRA didn't need the locking fields or _up initialized. (Some places needed _up to exist and not be off the end of a NULL or garbage pointer, but they didn't require it to be initialized to a specific value.) - For now, stdio.h "knows" that pthread_t is a 'struct pthread *' to avoid namespace pollution of including all the pthread types in stdio.h. Once we remove all the inlines and make __sFILE private it can go back to using pthread_t, etc. - This does not remove any of the inlines currently and does not change any of the public ABI of 'FILE'. MFC after: 1 month Reviewed by: peter
* Specifically mark the members of 'FILE' that are accessed via inlinejhb2008-04-171-6/+10
| | | | | | functions or macros since they are part of the public ABI as a result. MFC after: 1 month
* Implement fdopendir(3) by splitting __opendir2() into two parts, the upper partdelphij2008-04-161-0/+1
| | | | | | deals with the usual __opendir2() calls, and the rest part with an interface translator to expose fdopendir(3) functionality. Manual page was obtained from kib@'s work for *at(2) system calls.
* Add the restrict qualifiers to the pointer arguments of the readlinkat.kib2008-04-101-1/+1
|
* Add memrchr(3).delphij2008-04-101-0/+1
| | | | Obtained from: OpenBSD
* Correct the prototype for the faccessat().kib2008-04-011-1/+1
| | | | Reported by: ru
* Add the libc glue and headers definitions for the *at() syscalls.kib2008-03-312-0/+14
| | | | | | | Based on the submission by rdivacky, sponsored by Google Summer of Code 2007 Reviewed by: rwatson, rdivacky Tested by: pho
* Implement csqrtl().das2008-03-301-0/+2
|
* Hook hypotl() and cabsl() up to the build.das2008-03-301-1/+2
|
* Allow an application to define FOPEN_MAX (like we allow for OPEN_MAXjb2008-03-261-0/+2
| | | | in sys/syslimits.h).
* Add POSIX pthread API pthread_getcpuclockid() to get a thread's cpudavidxu2008-03-222-0/+2
| | | | time clock id.
* Add cpu affinity APIs to get and set thread's cpu affinity mask, thedavidxu2008-03-031-0/+7
| | | | functions are intented to be are compatible with glibc.
* Added the "restrict" type-qualifier to the readlink() prototype.ru2008-02-261-1/+1
|
* Change readlink(2)'s return type and type of the last argumentru2008-02-121-1/+1
| | | | | | to match POSIX. Prodded by: Alexey Lyashkov
* Per discussion on -threads, rename _islocked_np() to _isowned_np().des2008-02-061-1/+1
|
OpenPOWER on IntegriCloud