summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Don't automatically restart syscalls for the signals that the threadjb1998-08-264-4/+4
| | | | kernel needs.
* Back out most of the last commit. It created problems with sigpause.jb1998-08-263-78/+3
|
* Test program for sigwait.jb1998-08-252-0/+205
| | | | Submitted by: Daniel M. Eischen <eischen@vigrid.com>
* Add support for building test programs.jb1998-08-253-0/+24
|
* Fix for sigwait problem.jb1998-08-259-51/+297
| | | | | Submitted by: Daniel M. Eischen <eischen@vigrid.com> PR: misc/7039
* The length argument to sysctl is now size_t.dfr1998-08-252-3/+6
|
* Fixed syntax errors (__dead should have gone away years ago, andbde1998-08-241-2/+2
| | | | __attribute__(()) is a gccism - we use __dead2).
* Describe what constitues an exceptional condition.steve1998-08-241-0/+2
| | | | | PR: 7666 Submitted by: Archie Cobbs <archie@whistle.com>
* Nuke unsupported architecture filesgpalmer1998-08-222-493/+0
|
* Building `compat' on alpha is meaningless (they are i386 libraries)gpalmer1998-08-221-2/+3
|
* Remove the bootstrap hack that prevented the use of the rtld.jb1998-08-202-24/+3
|
* Add libstand.msmith1998-08-201-2/+2
|
* Install libstand header <stand.h> and manpage (libstand.3)msmith1998-08-201-1/+6
|
* This commit was generated by cvs2svn to compensate for changes in r38451,msmith1998-08-2059-0/+11092
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * This is libstand; a support library for standalone executables (eg. bootstrapmsmith1998-08-2059-0/+11092
| | | | | modules). Obtained from: NetBSD, with some architectural changes and many additions.
* This is libstand; a support library for standalone executables (eg. bootstrapmsmith1998-08-201-0/+316
| | | | | modules). Obtained from: NetBSD, with some architectural changes and many additions.
* do not include private copy of bpf.h - it leads to dangerous mismatchache1998-08-181-2/+2
| | | | of kernel/user bpf interface - include updated /sys/net/bpf.h instead
* Made this actually work when there's an object directory:bde1998-08-171-4/+11
| | | | | | | | | | | | | | | | - replaced bogus dependencies of distribution sources on generated sources by the same ones that bsd.lib.mk would generate if it knew all the sources. We shoot ourself in the foot by not naming the generated (included) sources *.h, so we can just put the generated sources in SRCS. - replaced -I${.CURDIR} by `-I.'. Here `.' is an alias for ${.OBJDIR}. -I${.CURDIR} didn't do anything, since ${.CURDIR} is the default in all cases here (it would be necessary for ""-style includes made from sources in ${.OBJDIR}. Don't use `+=' for setting CLEANFILES for the first time. Added $Id$.
* Cross my fingers and enable libfetch.des1998-08-171-2/+2
|
* Commit a bunch of patches that have been accumulating:des1998-08-176-48/+62
| | | | | | | | | | - Fix the README to reflect the new status of the ftp code. - Change tons of 'if (xxx < 0)' to 'if (xxx == -1)' - Add two new interface functions - Fix the Makefile so it actually works (yay!) Now the manpage is lagging even further behind... :( Next on the todo list is to clean up the http code.
* Update to use the new elf headers.dfr1998-08-171-15/+28
|
* Remove support for NetBSD syscalls.jb1998-08-179-378/+3
|
* Remove the comment about how to get NetBSD syscalls since there arejb1998-08-171-8/+1
| | | | now programs built on alpha that _must_ use FreeBSD syscalls to work.
* Add missing #include of <sys.types.h>phk1998-08-151-0/+1
|
* I have added the support for BIG5 encoding into libc/libxpg4/mklocale.phk1998-08-154-6/+128
| | | | | | | | | | | the diff is attached below. This is done on the 3.0 source-tree. I have test this on 2.2-stable before, but I don't have a 3.0 machine right now. This patch is mainly to make libc support BIG5 encoding, thus add zh_TW.BIG5 locale to 3.0. Submitted by: Chen Hsiung Chan <frankch@waru.life.nthu.edu.tw>
* Build libkvm on alpha too.jb1998-08-151-3/+2
|
* Add an alpha machdep for kvm. The vatop functions are stubbed out fordfr1998-08-151-0/+197
| | | | | | | now (mainly because I haven't ported them from the NetBSD crash dump environment). Obtained from: NetBSD
* Make the locally built and executed build tools in this directoryjb1998-08-151-6/+6
| | | | | | static to avoid them trying to use shared libraries before we're ready. During the initial elf buildworld, the shared loader only exists in the obj tree, so it can't be used.
* Add missing initialization of the length variable passed tojdp1998-08-121-2/+3
| | | | | getsockopt(). Use a separate variable for clarity, instead of overloading an unrelated variable.
* Add extra initialisation code that is required for processes thatjb1998-08-103-3/+87
| | | | | | | are started instead of init (pid = 1). This allows an embedded implementation quite like VxWorks, with (possibly) a single threaded program running instead of init. The neat thing is that the same threaded process can run in a multi-user workstation environment too.
* If using FreeBSD syscalls, handle the syscalls that don't requirejb1998-08-081-1/+11
| | | | default asm code the same way as on i386.
* Include FreeBSD's syscall.h if not using NetBSD syscalls.jb1998-08-081-2/+5
|
* Allow for the fact that NetBSD syscalls are no longer the default. Calljb1998-08-081-0/+4
| | | | sigaltstack by default if using FreeBSD syscalls.
* Make NetBSD compatibility conditional on NETBSD_SYSCALLS being defined.jb1998-08-081-1/+3
| | | | This is no longer the default.
* References to NetBSD syscalls changed to just a comment about what tojb1998-08-081-6/+7
| | | | | | add to /etc/make.conf to use FreeBSD's libc with a NetBSD/Alpha kernel. From now on, FreeBSD/Alpha is just FreeBSD.
* Correct the description of skeyaccess(). It determines whether Unixjdp1998-08-051-5/+7
| | | | | | passwords are permitted, not whether S/Key passwords are permitted. This manual page could use a good going over.
* Fixed bitrot in prototypes in synopsis.bde1998-08-031-5/+5
|
* Changed prototype in synopsis to match prototype in <pthread.h>.bde1998-08-036-6/+6
|
* Fixed missing header in synopsis.bde1998-08-031-1/+2
|
* isnetworktty -> isnettty. ttyent.h has already gone through 3bde1998-08-032-6/+6
| | | | | | revisions to match the confusing spelling in getttyent.c (1 to break it to match the man page and 1 in each of 2 branches to fix it). This function seems to be orphaned and unused.
* The pthreads standard has been published. Change:alex1998-08-0348-94/+94
| | | | | | | | | | ...is expected to conform to IEEE (``POSIX'') Std 1003.1c when it is published. to: ...conforms to ISO/IEC 9945-1 ANSI/IEEE (``POSIX'') Std 1003.1 Second Edition 1996-07-12. Discussed with: jb
* A style fix for my previous commit.alex1998-08-023-3/+3
|
* Fixed a race condition during the first lock/trylock of a staticallyalex1998-08-023-12/+63
| | | | | | | | | initialized mutex. Statically initialized mutexes are actually initialized at first use (pthread_mutex_lock/pthread_mutex_trylock). To prevent concurrent initialization by multiple threads, all static initializations are now serialized by a spinlock. Reviewed by: jb
* Fixed printf format errors.bde1998-08-021-1/+1
|
* I've put together man pages for the pthread_cleanup, pthread_cond, andphk1998-07-3130-4/+1902
| | | | | | | | pthread_mutex routines. I've also tweaked pthread_create.3 to point to pthread_cleanup_push(3) and pthread_cleanup_pop(3). PR: 7450 Submitted by: Brian Cully <shmit@kublai.com>
* Print uid/gid as u_long per bde suggestionache1998-07-291-5/+5
|
* Fixed disordering in previous commit.bde1998-07-292-8/+8
|
* Add missing period. We don't allow maternity leaves.hoek1998-07-291-2/+2
|
* u_int --> unsigned int, remove (now unneeded) <sys/types.h>jlemon1998-07-283-15/+13
|
* oops, forgot to do ``cvs add'' first.jlemon1998-07-286-0/+417
|
OpenPOWER on IntegriCloud