summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* * The copy of the stat struct in the man page has rotted, so remove it.dougb2003-05-131-29/+2
| | | | | | | | Those who really need this information can find it in the include file. * Include a succinct description of the st_birthtime field. Approved by: re (bmah)
* Following MLINKS added, which point to host_access(3):hmp2003-05-121-0/+2
| | | | | | | | | - hosts_ctl(3), hosts_access(3), request_init(3), request_set(3). PR: docs/52000 Submitted by: Simon L. Nielsen <simon@nitro.dk> Approved and Reviewed by: des (mentor), re (scottl)
* msg2mtm2003-05-121-7/+7
|
* msg1mtm2003-05-123-263/+181
|
* Update ldexp.c for amd64.peter2003-05-102-7/+1
|
* Add a comment describing why it's important for the values in thisdas2003-05-086-0/+42
| | | | | | file to be correct, and how to generate them automatically. Caused much pain and suffering for: peter
* SIG_SETMASK is 3, not 1. Sigh.peter2003-05-081-1/+1
|
* Fix an embarresing transcription error from i386 to amd64. Put the argumentspeter2003-05-082-13/+12
| | | | | to sigprocmask(2) int the correct order. *blush*. For sigsetjmp(), match up the pushq/popq in the non-savemask case.
* Tidy up modf.S and make it actually work. It wasn't extractingpeter2003-05-081-16/+13
| | | | | the value out of ST(0) before copying it to %xmm0. Also remove bogus stack frame and work in the red zone.
* Fix typo, even though this is unused.peter2003-05-081-1/+1
|
* Like ia64, amd64 has got a 16 byte sized and aligned 'long double'.peter2003-05-081-1/+2
| | | | Obtained from: re (blanket amd64)
* Turn off alloca.S - it cannot possibly work like this since on AMD64, gccpeter2003-05-071-1/+1
| | | | | | | doesn't use stack frames. It uses offsets relative to %rsp, not %rbp. So we cannot just change %rsp like this. Approved by: re (blanket amd64)
* Actually use the correct values for AMD64. It is a 64 bit platform,peter2003-05-071-0/+4
| | | | configure gdtoa as such.
* Properly cleanup the stack before jumping to cerror() if rfork(2) fails.jhb2003-05-071-0/+4
| | | | | Submitted by: Igor Sysoev <is@rambler-co.ru> Approved by: re (scottl)
* Fix a null dereference leading to a core dump whenmtm2003-05-061-1/+4
| | | | | | | | the number of threads exceeds the number of open slots in ldt_entries[]. Approved by: markm (mentor)(implicit) Reviewed by: jeff
* o Correct a debug message that refered to the wrong functionmtm2003-05-062-23/+20
| | | | | | | o Remove an unncecesary if clause Approved by: markm (mentor)(implicit) Reviewd by: jeff
* Make pthread_join() async-cancel-safe. David was going to commitdeischen2003-05-062-18/+0
| | | | | | | this, but I think he's asleep and want to be sure it gets in before the freeze. Submitted by: davidxu
* OpenPAM is WANRS6-clean.des2003-05-051-1/+1
|
* Turn MAKE_KERBEROS5 into NO_KERBEROS by negating the logic. Some extramarkm2003-05-052-2/+2
| | | | | cleanups were necessary in release/Makefile, and the tinderbox code was syntax checked, not run checked.
* Backout last commit. It is redundant in -CURRENT.murray2003-05-051-5/+1
| | | | Pointed out by: David Schultz
* call dump_queues() only when DEBUG_THREAD_KERN is defined, save somedavidxu2003-05-052-0/+4
| | | | cpu cycles.
* Replace use of a spinlock with a mutex.deischen2003-05-042-12/+9
|
* Protect against a race between granting a lock and accessingdeischen2003-05-044-14/+56
| | | | | | other parts of the lock. Submitted by: davidxu
* Note that the idletime setting is not enforced.murray2003-05-041-1/+5
| | | | | PR: docs/40952 MFC After: 3 days
* This is now Gcc 3.3 WARNS 6 clean.obrien2003-05-041-0/+1
|
* Set abitag __unused.obrien2003-05-041-3/+4
|
* Fix suspend and resume.deischen2003-05-0412-86/+94
| | | | Submitted (in part) by: Kazuaki Oda <kaakun@highway.ne.jp>
* Document the login-backoff and login-retries capabilities.murray2003-05-041-0/+5
| | | | | PR: docs/51397 MFC After: 3 days
* Handle thread canceled case, it is same as signal caused backout,davidxu2003-05-022-2/+2
| | | | but will break out of loop.
* Trasmute moer "krb5" distibutions into "crypto".markm2003-05-011-3/+1
|
* Use the .Dl macro.trhodes2003-05-011-1/+1
| | | | Discussed with: mdoc(7) officer ru
* Build non-crypto telnet(1) and telnetd(8) if NO_OPENSSL is defined.ru2003-05-011-1/+1
| | | | Submitted by: Marius Strobl <marius@alchemy.franken.de>
* State the fact that the range is twice the traditional RAND_MAX.trhodes2003-05-011-1/+16
| | | | | | | Add an EXAMPLES section. PR: 48493 Submitted by: Paul Herman <pherman@frenchfries.net> (original version)
* Back out the `hiding' of strlcpy and strlcat. Several peoplenectar2003-05-0120-71/+51
| | | | vocally objected to this safety belt.
* Convert the i386 alloca(3) to the x86-64 ISA.obrien2003-05-011-0/+53
| | | | Alignment hack from: NetBSD
* Use C99-style varadic macros instead of the non-standard gcc syntax.des2003-05-011-5/+5
|
* Mark libpam as c99- and WARNS5-clean.des2003-05-011-1/+2
|
* Mark libfetch as c99-clean. Always build at WARNS level 2 rather thandes2003-05-011-2/+2
| | | | | juggling with levels 2 and 3, as this has lead to world breakage for NOCRYPT users in the past.
* AMD64 support (another IEEEFP platform)peter2003-04-301-1/+1
|
* AMD64 support; repocopied from i386peter2003-04-301-3/+3
|
* Teach libdisk that AMD64 works just like i386peter2003-04-305-8/+14
|
* Add __amd64__ to the list of things that use IEEEFPpeter2003-04-301-1/+1
|
* Tell malloc.c that AMD64 uses the same pagesize as i386.peter2003-04-301-0/+4
|
* Add __amd64__ to the list of things that use HIDENAME() to hide minbrkpeter2003-04-301-1/+1
|
* Update for AMD64. repocopied from i386-elf/crt1.c. Deal with regparmpeter2003-04-301-20/+5
| | | | | argument passing rather than stack based args. The kernel passes the base of the argument/env vector in %rdi (arg1).
* Turn off libstand for amd64 for the time being. It is built in i386peter2003-04-301-1/+2
| | | | mode, and we do not need the complications for now.
* Delete i386_* syscall wrappers and manpages. Rename Ovfork.S to vfork.S.peter2003-04-301-12/+2
|
* Update for AMD64 after repocopy from i386/sys/*. This means:peter2003-04-306-105/+35
| | | | | | | - strip out the nasty PIC_PROLOGUE/EPILOGUE stuff, since we dont have to lose a register in PIC mode anymore (we use %rip-relative addressing). - update for C register argument passing conventions. - convert 32 bit to 64 bit register sizes etc.
* I have no idea why the reboot(2) syscall wrapper ends with iret, butpeter2003-04-301-1/+1
| | | | update it to be iretq for completeness.
* Update for AMD64. Depend on %rdi (first syscall argument) being preservedpeter2003-04-301-4/+3
| | | | across a "syscall"-style syscall
OpenPOWER on IntegriCloud