summaryrefslogtreecommitdiffstats
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* Update to more current reality.phk1996-11-281-11/+31
| | | | | Reviewed by: phk Submitted by: Robin Carey <robin@mailgate.dtc.rankxerox.co.uk>
* Matching routed.h to go along with latest routed.wollman1996-11-191-2/+14
|
* Change prototypes for gmtime_r() and localtime_r() in accordance withhsu1996-11-111-3/+3
| | | | IEEE pthreads specification.
* Prototype pthread_mutexattr_getkind_np() and pthread_mutexattr_setkind_np().hsu1996-11-111-5/+7
|
* Moved pthread_mutexattr_default inside #ifndef PTHREAD_KERNEL now thathsu1996-11-111-2/+8
| | | | | | we use it in the uthreads implementation. Moved enum pthread_mutextype here from libc_r/uthread/pthread_private.h. Change prototype for pthread_getspecific().
* Remove collate_range_cmpache1996-10-311-3/+0
|
* improve comments for UT_NAMESIZEwosch1996-10-272-3/+7
|
* Fixed tabs and punctuation to match nearby (and KNF) style. Sigh.bde1996-10-241-2/+2
|
* GNU-style changes:ache1996-10-231-3/+4
| | | | | 1) Rename FNM_ICASE to FNM_CASEFOLD 2) Add FNM_LEADING_DIR
* add flag FNM_ICASE for case insensitve searchwosch1996-10-201-0/+1
| | | | Reviewed by: ache
* Add back netnsjkh1996-10-171-3/+3
|
* Fixed the wrong include file for a "prototype mismatch" error betweenscrappy1996-10-081-3/+3
| | | | dlfcn.h and link.h
* dlfcn.h and link.h have conflicting declarations for dlopen/dlsym,scrappy1996-10-071-3/+3
| | | | | | | | | | | | | | with dlfcn.h declaring them as: void *dlopen __P((const char *, int)); void *dlsym __P((void *, const char *)); while link.h declared them as extern void *dlopen __P((char *, int)); extern void *dlsym __P((void *, char *)); Fix link.h to match dlfcn.h
* Add support for storing a -R path in ld in the section dispatch table,peter1996-10-011-2/+5
| | | | | | | | | support LD_HINTS_VERSION_2 that has the ldconfig pathname stored in the ld.so.hints file (ie: a new library can be installed and used without needing to run ldconfig -m first) Reviewed by: nate, jdp Obtained from: NetBSD (mostly)
* Add the linker set stab types: N_SETA N_SETT N_SETD N_SETB N_SETVpeter1996-10-011-1/+8
|
* Fixed CLEANFILES. osreldate was missing.bde1996-09-201-3/+4
| | | | Cleaned up LDIRS line.
* Don't use __dead or __pure in user code. They were obfuscationsbde1996-09-145-78/+75
| | | | | | for gcc >= 2.5 and no-ops for gcc >= 2.6. Converted to use __dead2 or __pure2 where it wasn't already done, except in math.h where use of __pure was mostly wrong.
* install rpc header filesadam1996-09-011-1/+4
|
* 'make install' is not supposed to touch anything.peter1996-08-301-2/+2
|
* missed these parts of Bruce's changes last time..peter1996-08-301-2/+2
| | | | Submitted by: bde (again :-)
* echo -> ${ECHO}peter1996-08-301-6/+6
| | | | | | | do the rm -rf and ln -s in two seperate commands to allow a fork/exec without a "sh -c" in the middle. Submitted by: bde
* Some bmake magic to clean up the install more.peter1996-08-301-10/+6
| | | | | | | fix another missed -c typo of mine. clean the rpcgen implicit rule more Submitted by: bde
* Hand merge in the bind-4.9.4-P1 resolver updates.peter1996-08-294-6/+56
|
* replace cmp -s || install with ${INSTALL} -C, and @for with .forpeter1996-08-291-21/+10
|
* Clean up include Makefile:peter1996-08-291-75/+61
| | | | | | | | | | | | - use .for loops instead of shell for loops. This means we can be shown what is happening while it's going, rather than some pacifier "echo" statement. - use "${INSTALL} -C", nuke the "cmp -s" hack - for "copies" mode, the include files are no longer touched each time the world is built. (ie: no rm -rf. symlinks are removed, mtree builds the new dirs or confirms the existing ones) - osreldate.h is build in the local dir and conditionally installed, rather than built in /usr/include and either renamed or deleted.
* New version of routed.h to match new version of routed.wollman1996-08-271-17/+20
|
* Submitted by: John Birrell <cimaxp1!jb@werple.net.au>julian1996-08-203-191/+193
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Here are the diffs for libc_r to get it one step closer to P1003.1c These make most of the thread/mutex/condvar structures opaque to the user. There are three functions which have been renamed with _np suffixes because they are extensions to P1003.1c (I did them for JAVA, which needs to suspend/resume threads and also start threads suspended). I've created a new header (pthread_np.h) for the non-POSIX stuff. The egrep tags stuff in /usr/src/lib/libc_r/Makefile that I uncommented doesn't work. I think its best to delete it. I don't think libc_r needs tags anyway, 'cause most of the source is in libc which does have tags. also: Here's the first batch of man pages for the thread functions. The diff to /usr/src/lib/libc_r/Makefile removes some stuff that was inherited from /usr/src/lib/libc/Makefile that should only be done with libc. also: I should have sent this diff with the pthread(3) man page. It allows people to type make -DWANT_LIBC_R world to get libc_r built with the rest of the world. I put this in the pthread(3) man page. The default is still not to build libc_r. also: The diff attached adds a pthread(3) man page to /usr/src/share/man/man3. The idea is that without libc_r installed, this man page will give people enough info to know that they have to build libc_r.
* #if !ANSI !POSIX newly added collate_range_cmp functionache1996-08-131-0/+2
|
* There is so many places where range comparation (using collate)ache1996-08-121-0/+1
| | | | | needed (much more than I think initially), so I forced to add new user-visible non-standard function to libc.
* Create FreeBSD copyright (c comment) for OS versionwosch1996-08-041-3/+4
|
* New routed.h that goes with the new routed.wollman1996-07-221-13/+1
|
* Fixed new and old standards conformance bugs. The non-POSIX confstr() wasbde1996-07-171-3/+2
| | | | | | in the POSIX section for a log time. The non-POSIX getgrouplist() and setgroups() were recently added to the POSIX section although setgroups() was already in the non-POSIX section.
* General -Wall warning cleanup, part I.jkh1996-07-121-0/+2
| | | | Submitted-By: Kent Vander Velden <graphix@iastate.edu>
* Add netatalk symlink, ifconfig not compiled in other caseache1996-07-091-2/+2
|
* There are a few small additions to the protocol to make itwpaul1996-07-041-5/+63
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | easier to use in mixed environments: - Add three new members to the request structure: - a filename specification - a database type specification - a system byte prder specification These allow the client to ask the server for a particular type of database (Berkeley DB hash/btree/recno, GNU GDBM, dbm, ndbm, etc...) and get back a meaningful error if the server doesn't support it. The byte order spec is needed if the database type is byte order sensntive. You don't, for example, want to read an ndbm database from a big endian machine on a little endian machine (the ndbm code will explode). The filename spec lets the client handle things like ndbm which uses two seperate files per database (foo.dir and foo.pag). The client can ask for each half, one at a time. - Add a list of database types and byte order values. Each list has a wildcard 'ANY' entry which lets the client ask for whatever the server supports. (XFR_ENDIAN_ANY is useful with the Berkeley DB hash method for instance, since it isn't byte order sensitive.) - Add two newserver failure codes: XFR_DB_TYPE_MISMATCH and XFR_DB_ENDIAN_MISMATCH. The server uses these to tell the client that it doesn't support the requested type/byte order. These changes were made at the suggestion of Thorsten Kukuk, the current maintainer of the Linux ypserv distribution. This allows Linux and FreeBSD NIS servers to use the same ypxfrd protocol and avoid accidentally exchanging incompatible map files.
* remove zopen, zopen is not part of libc.wosch1996-07-021-1/+0
|
* Added missing prototype for sigaltstack()smpatel1996-06-281-0/+1
|
* Add `netkey' to list of kernel directories to include in /usr/include.wollman1996-06-151-2/+2
|
* Add an independent implementation of addr2ascii(3) and ascii2addr(3)wollman1996-06-131-1/+6
| | | | following the API of the INRIA IPv6 implementation.
* Now that Peter has been nice enough to bail me out of my last littlewpaul1996-06-051-4/+5
| | | | mishap, it's time to have the Makefile install ypxfrd.x and ypxfrd.h.
* This commit was generated by cvs2svn to compensate for changes in r16119,wpaul1996-06-051-0/+117
| | | | which included commits to RCS files with non-trunk default branches.
* Install pccard includes.phk1996-06-041-2/+2
|
* Protocol definitions for RIPv2.wollman1996-05-301-21/+88
| | | | Obtained from: Vernon Schryver <vjs@mica.denver.sgi.com>
* Add an implementation of the gnu-ish asprintf() and vasprintf(). They arepeter1996-05-271-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | not based on gpl'ed code, just prototype and usage. I'm not 100% certain they behave the same while the system is in trouble (eg: malloc() failing) but in those circumstances all bets would be off anyway. These routines work like sprintf() and vsprintf(), except that instead of using a fixed buffer, they allocate memory and return it to the user and it's the user's responsibility to free() it. They have allocate as much memory as they need (and can get), so the size of strings it can deal with is limited only by the amount of memory it can malloc() on your behalf. There are a few gpl'ed programs starting to use this interface, and it's becoming more common with the scares about security risks with sprintf(). I dont like the look of the code that the various programs (including cvs, gdb, libg++, etc) provide if configure can't find it on the system. It should be possible to modify the stdio core code to provide this interface more efficiently, I was more worried about having something that worked and was secure. :-) (I noticed that there was once intended to be a smprintf() routine when our stdio was written for 4.4BSD, but it looks pretty stillborn, and it's intended interface is not clear). Since Linux and gnu libc have this interface, it seemed silly to bring yet another one onto the scene.
* Made this work with the documented prerequisite #includes (none).bde1996-05-011-0/+8
|
* Fixed longstanding namespace convolution involving rune_t vs wchar_t.bde1996-05-015-39/+51
| | | | | | | | | | | If _ANSI_SOURCE or _POSIX_SOURCE is defined, then <ctype.h> had to be included before <stddef.h> or <stdlib.h> to get rune_t declared. Now rune_t is declared perfectly bogusly in all cases when <ctype.h> is included. This change breaks similar (but more convoluted) convolutions in the stddef.h in gcc distributions. Ports of gcc should avoid using the gcc headers.
* Fix sgetrune/sputrune arg type: was unsigned int instead of size_tache1996-04-181-2/+7
|
* NIS cleanups and fixes, the next generation.wpaul1996-04-161-4/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | getnetgrent.c: - Catch one bogon that snuck by: in _listmatch(), check for '\0' rather than '\n'; strings returned from yp_match() are terminated with a nul, not a newline. getpwent.c: - Rip out all of the +inclusion/-exclusion stuff from before and replace it with something a little less grotty. The main problem with the old mechanism was that it wasted many cycles processing NIS entries even after it already knew they were to be exlcuded (or not included, depending on your pointof view). The highlights of these changes include: o Uses an in-memory hash database table to keep track of all the -@netgroup, -user, and -@group exclusions. o Tries harder to duplicate the behavior normally obtained when using NIS inclusions/exclusions on a flat /etc/passwd file (meaning things come out in much the same order). o Uses seperate methods for handling getpwent() and getpwnam()/getpwuid() operations instead of trying to do everything with one general function, which didn't work as well as I thought it would. o Uses both getnetgrent() and innetgr() to try to save time where possible. o Use only one special token in the local password database (_PW_KEYYPBYNUM) instead of seperate tokens to mark + and - entries (and stop using the counter tokens too). If this new token doesn't exist, the code will make due with the standard _PW_KEYBYNUM token in order to support older databases that won't have the new token in them. All this is an attempt to make this stuff work better in environments with large NIS passwd databases.
* Slightly simplify inlined functionsache1996-03-252-12/+6
|
* Fix incorrect parameter types for ftell and fgets.paul1996-03-241-2/+2
|
OpenPOWER on IntegriCloud