summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* MFi386: revision 1.4.nyan2002-11-081-1/+0
|
* Don't set a variable to a bogus value right before setting it to thejhb2002-11-082-2/+0
| | | | correct value in the next statement.
* Don't set a value to a variable that we don't use.jhb2002-11-081-1/+0
|
* - Merge Write_FreeBSD() into Write_Disk().jhb2002-11-081-40/+32
| | | | - Miscellaneous cleanups.
* License and blurb update authorized by Network Associates.rwatson2002-11-072-14/+8
|
* Fixed pc98 support.nyan2002-11-072-6/+5
| | | | (merged i386 changes from chunk.c 1.41 and disk.c 1.100)
* Get this closer to working. The Write_Disk() function's for loop neededjhb2002-11-071-20/+13
| | | | | | | to use the same start condition as the i386 version. However, since Alpha's only have one fake "slice" from sysinstall's perspective we don't need to use a loop, but can just write out the BSD label in the first fake "slice".
* o Make the COMPATIBILITY section a bit less redundant.chris2002-11-061-1/+1
| | | | | Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Labs
* o Update man page to reflect the new prototypes for mac_{to,from}_text.chris2002-11-061-43/+15
| | | | | | | o Remove a (currently) no-longer-pertinent entry from errors. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Labs
* Hook up the userland wrapper for __mac_execve().rwatson2002-11-062-0/+43
| | | | | Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories
* Wrap function prototype declarations in __BEGIN_DECLS to do the right thingjmallett2002-11-051-0/+2
| | | | | | with them in non-C cases. Requested by: Patrick Hartling <patrick@137.org>
* License update authorized by NAI: remove clause 3.rwatson2002-11-051-7/+4
|
* Fix bogus return values from libc_r's write() routine in situations wherearchie2002-11-051-6/+21
| | | | | | | a partial-write is followed by an error. PR: 43335 MFC after: 1 week
* Clarify language relating to ACLs, Capabtilities, and MAC, since therwatson2002-11-041-28/+36
| | | | | implementation status of these services has changed substantially since this man page was last updated.
* Update license, historical information.rwatson2002-11-041-7/+8
|
* Point out that the MAC Framework is considered experimental.rwatson2002-11-041-0/+9
|
* After waiting for help with the markup, I finally decided to just patchnsayer2002-11-041-3/+3
| | | | | | | | | the page myself. The new language is more accurate than what was there before, but the most accurate way of describing the funcionality eludes me. PR: kern/33904 MFC after: 1 month
* Add descriptions for some _PC_* variables from <sys/unistd.h> thattjr2002-11-041-1/+40
| | | | were missing.
* Backout "compatibility hack" for __sF.alfred2002-11-042-9/+1
| | | | Requested by: Steve Kargl <sgk@troutmask.apl.washington.edu> (submitter)
* Remove unused MBR gunk leftover from i386.jhb2002-11-031-11/+1
|
* Fix to compile for pc98.nyan2002-11-031-0/+8
|
* Initialize d->bios_cyl. We know the media size in sectors, the numbermarcel2002-11-031-4/+10
| | | | | | | of heads end the number of sectors per track. If there's an obvious insanity (heads and sectors are both zero or the media size is not an integral multiple of heads times sector) we set the number of cylinders to zero.
* Provide a hook to make __sF visible outside of libc for commercial appsalfred2002-11-022-1/+9
| | | | | | if WANT_COMPAT4_STDIO is defined when compiling libc. Submitted by: Steve Kargl <sgk@troutmask.apl.washington.edu>
* Add support for GPT:marcel2002-11-021-5/+45
| | | | | | | | | | 1. When the parition type is not an integer, try to parse the type as an UUID. If that succeeds, map the UUID to chunk_e. 2. For GPT partitions, pass the type constructed in point 1 above to Add_Chunk. While here, fix the MBREXT case by only checking if the first 3 characters are MBR. This avoids duplication.
* Add support for ia64. This is almost identical to i386, except thatmarcel2002-11-021-0/+20
| | | | | with GPT chunks of type "part" do not necessarily live under chunks of type "freebsd". We don't necessarily have a disklabel.
* Don't claim all MBR's have subtype 165 on i386.phk2002-11-022-3/+2
| | | | Spotted by: Frode Nordahl <frode@nordahl.net>
* Track the number of non-data chararacters stored in socket buffers so thatkbyanc2002-11-011-1/+1
| | | | | | | | | | | the data value returned by kevent()'s EVFILT_READ filter on non-TCP sockets accurately reflects the amount of data that can be read from the sockets by applications. PR: 30634 Reviewed by: -net, -arch Sponsored by: NTT Multimedia Communications Labs MFC after: 2 weeks
* Fill in partition 2 with with "whole disk" parameters.phk2002-11-011-0/+8
|
* * Add stubs for pthread_cond_broadcast.dfr2002-11-013-28/+246
| | | | | | | | | | * Fix typos in rwlock stubs. * Add pthread_XXX counterparts to the _pthread_XXX stubs which libraries like libX11 can use to ensure thread-safety without requiring the use of a thread library. Submitted by: Terry Lambert (pthread_cond_broadcast) Reviewed by: deischen
* No need to include floatio.h here: vfscanf() no longer uses anythingtjr2002-11-012-2/+0
| | | | it defines.
* Re-apply the previously backed-out commit that fixes the problem wherearchie2002-10-316-7/+10
| | | | | | | | HUGE_VAL is not properly aligned on some architectures. The previous fix now works because the two versions of 'math.h' (include/math.h and lib/msun/src/math.h) have since been merged into one. PR: bin/43544
* Use the strong symbol'd version of pthread_mutex_init so we don'tdeischen2002-10-311-2/+2
| | | | | | | accidentally call a stub or application provided version of the same routine. Submitted by: dfr
* Style(9) improvements.phk2002-10-311-6/+6
|
* Set the sector size for the disk.phk2002-10-311-0/+2
|
* Restore to pc98 support.nyan2002-10-313-50/+108
|
* Use ${MACHINE} variable instead of using '.if .endif' each machines.nyan2002-10-311-18/+1
|
* Add '#include <err.h>' for warn().nyan2002-10-311-0/+1
|
* Actually save the bootblock in the disk structure. Write the bootblockjake2002-10-312-2/+9
| | | | to the right place on the disk instead of srewn all over it.
* Make __sF static. This can not be allowed to exist in 5.x.alfred2002-10-311-1/+1
|
* Untested alpha disk writer.phk2002-10-301-1/+1
|
* Write out 15 sectors of boot code.phk2002-10-301-0/+4
|
* Use __func__ and break a long line.des2002-10-301-5/+4
|
* Fix a bug in fenner's _fetch_writev() patch (rev 1.36)des2002-10-301-1/+6
| | | | Submitted by: fenner
* Add two additional references to the See Also section, which contain muchtjr2002-10-301-2/+16
| | | | better descriptions of UTF-8 and related issues.
* Use "deprecated" instead of "depreciated" where appropriate.sheldonh2002-10-301-1/+1
|
* Make pthread_sigmask(3) operate on the thread signal mask, not the processmini2002-10-302-2/+54
| | | | signal mask.
* Use KSE to schedule threads.mini2002-10-3019-518/+1015
|
* Recognize the (incorrect) error code a MediaHawk server sends in reply todes2002-10-301-0/+1
| | | | | | unrecognized commands such as MDTM. Requested by: Stephen Roome <stephen_roome@pepcross.com>
* Clarify my feelings towards fetch / libfetch.des2002-10-301-1/+0
|
* Recommit the non-broken parts of 1.34 and 1.37.des2002-10-301-6/+11
| | | | Change the type and name of a variable introduced in 1.33.
OpenPOWER on IntegriCloud