Tim J. Robbins
490eeb06b4
Use wide character ctype functions directly instead of relying on
...
4.4BSD extensions to the single-byte ctype functions.
2002-11-09 05:19:08 +00:00
Tim J. Robbins
39df93ae41
Add a missing return statement for the pwcs == NULL case (XSI extension).
2002-11-09 04:13:26 +00:00
Bill Fenner
d5c24aa856
Fix two typos.
2002-11-08 19:10:05 +00:00
Yoshihiro Takahashi
3b6431b5ed
- Recognize FAT partition on MBR and PC98 disks.
...
- Fix to convert to the name of partition.
2002-11-08 15:25:15 +00:00
Robert Watson
963b8cdcc8
Update acl.3 to xref getfacl(1) and setfacl(1), the recommended tools for
...
manipulating file ACLs. Update the status of the implementation a bit,
update the copyright, etc.
Obtained from: TrustedBSD Project
2002-11-08 15:01:28 +00:00
Yoshihiro Takahashi
8704e2bb35
MFi386: revision 1.4.
2002-11-08 14:49:14 +00:00
John Baldwin
a96977d0ab
Don't set a variable to a bogus value right before setting it to the
...
correct value in the next statement.
2002-11-08 14:00:44 +00:00
John Baldwin
7f55ebcd18
Don't set a value to a variable that we don't use.
2002-11-08 14:00:09 +00:00
John Baldwin
2b39144955
- Merge Write_FreeBSD() into Write_Disk().
...
- Miscellaneous cleanups.
2002-11-08 13:58:00 +00:00
Robert Watson
0285334bc8
License and blurb update authorized by Network Associates.
2002-11-07 20:37:04 +00:00
Yoshihiro Takahashi
ba91558ce9
Fixed pc98 support.
...
(merged i386 changes from chunk.c 1.41 and disk.c 1.100)
2002-11-07 14:54:53 +00:00
John Baldwin
75bd4c1549
Get this closer to working. The Write_Disk() function's for loop needed
...
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".
2002-11-07 14:39:21 +00:00
Chris Costello
2834b91a8d
o Make the COMPATIBILITY section a bit less redundant.
...
Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Labs
2002-11-06 17:38:18 +00:00
Chris Costello
baae0d7638
o Update man page to reflect the new prototypes for mac_{to,from}_text.
...
o Remove a (currently) no-longer-pertinent entry from errors.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Labs
2002-11-06 17:34:29 +00:00
Robert Watson
ce311c66ec
Hook up the userland wrapper for __mac_execve().
...
Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Laboratories
2002-11-06 03:38:47 +00:00
Juli Mallett
7a9b006d78
Wrap function prototype declarations in __BEGIN_DECLS to do the right thing
...
with them in non-C cases.
Requested by: Patrick Hartling <patrick@137.org>
2002-11-05 10:55:16 +00:00
Robert Watson
f8d0815040
License update authorized by NAI: remove clause 3.
2002-11-05 01:42:35 +00:00
Archie Cobbs
83189ac197
Fix bogus return values from libc_r's write() routine in situations where
...
a partial-write is followed by an error.
PR: 43335
MFC after: 1 week
2002-11-05 00:59:18 +00:00
Robert Watson
1ccff0f490
Clarify language relating to ACLs, Capabtilities, and MAC, since the
...
implementation status of these services has changed substantially
since this man page was last updated.
2002-11-04 20:52:09 +00:00
Robert Watson
ec05f17e38
Update license, historical information.
2002-11-04 20:45:44 +00:00
Robert Watson
443ab2a0fd
Point out that the MAC Framework is considered experimental.
2002-11-04 20:42:58 +00:00
Nick Sayer
e3979b2122
After waiting for help with the markup, I finally decided to just patch
...
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
2002-11-04 19:30:04 +00:00
Tim J. Robbins
e30609f0b6
Add descriptions for some _PC_* variables from <sys/unistd.h> that
...
were missing.
2002-11-04 07:21:44 +00:00
Alfred Perlstein
ac1cc6ee11
Backout "compatibility hack" for __sF.
...
Requested by: Steve Kargl <sgk@troutmask.apl.washington.edu> (submitter)
2002-11-04 03:23:56 +00:00
John Baldwin
da58ad34ef
Remove unused MBR gunk leftover from i386.
2002-11-03 21:18:17 +00:00
Yoshihiro Takahashi
0932c866b6
Fix to compile for pc98.
2002-11-03 09:35:08 +00:00
Marcel Moolenaar
62b693d7db
Initialize d->bios_cyl. We know the media size in sectors, the number
...
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.
2002-11-03 01:37:08 +00:00
Alfred Perlstein
0fc25b925d
Provide a hook to make __sF visible outside of libc for commercial apps
...
if WANT_COMPAT4_STDIO is defined when compiling libc.
Submitted by: Steve Kargl <sgk@troutmask.apl.washington.edu>
2002-11-02 19:47:53 +00:00
Marcel Moolenaar
12d76c6fec
Add support for GPT:
...
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.
2002-11-02 12:14:04 +00:00
Marcel Moolenaar
0a8575280c
Add support for ia64. This is almost identical to i386, except that
...
with GPT chunks of type "part" do not necessarily live under chunks
of type "freebsd". We don't necessarily have a disklabel.
2002-11-02 12:05:16 +00:00
Poul-Henning Kamp
a6db5ac980
Don't claim all MBR's have subtype 165 on i386.
...
Spotted by: Frode Nordahl <frode@nordahl.net>
2002-11-02 10:57:44 +00:00
Kelly Yancey
e0f640e82d
Track the number of non-data chararacters stored in socket buffers so that
...
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
2002-11-01 21:27:59 +00:00
Poul-Henning Kamp
0514d63049
Fill in partition 2 with with "whole disk" parameters.
2002-11-01 16:28:19 +00:00
Doug Rabson
ceb336710e
* Add stubs for pthread_cond_broadcast.
...
* 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
2002-11-01 09:37:17 +00:00
Tim J. Robbins
14ffdae94d
No need to include floatio.h here: vfscanf() no longer uses anything
...
it defines.
2002-11-01 05:13:01 +00:00
Archie Cobbs
83999f5a32
Re-apply the previously backed-out commit that fixes the problem where
...
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
2002-10-31 23:05:20 +00:00
Daniel Eischen
0ece26b0ba
Use the strong symbol'd version of pthread_mutex_init so we don't
...
accidentally call a stub or application provided version of the
same routine.
Submitted by: dfr
2002-10-31 18:17:58 +00:00
Poul-Henning Kamp
fd4a61e809
Style(9) improvements.
2002-10-31 07:56:40 +00:00
Poul-Henning Kamp
63abca411d
Set the sector size for the disk.
2002-10-31 07:55:38 +00:00
Yoshihiro Takahashi
fe1f2a9a84
Restore to pc98 support.
2002-10-31 05:51:25 +00:00
Yoshihiro Takahashi
fecafa765a
Use ${MACHINE} variable instead of using '.if .endif' each machines.
2002-10-31 05:43:49 +00:00
Yoshihiro Takahashi
c540b79f8b
Add '#include <err.h>' for warn().
2002-10-31 05:38:48 +00:00
Jake Burkholder
e03494dd17
Actually save the bootblock in the disk structure. Write the bootblock
...
to the right place on the disk instead of srewn all over it.
2002-10-31 04:25:17 +00:00
Alfred Perlstein
c313cb2abf
Make __sF static. This can not be allowed to exist in 5.x.
2002-10-31 01:54:27 +00:00
Poul-Henning Kamp
89a0742e57
Untested alpha disk writer.
2002-10-30 20:54:22 +00:00
Poul-Henning Kamp
ae59d02e12
Write out 15 sectors of boot code.
2002-10-30 20:52:07 +00:00
Dag-Erling Smørgrav
a49b853d94
Use __func__ and break a long line.
2002-10-30 15:01:29 +00:00
Dag-Erling Smørgrav
7504527ed2
Fix a bug in fenner's _fetch_writev() patch (rev 1.36)
...
Submitted by: fenner
2002-10-30 14:25:00 +00:00
Tim J. Robbins
f6b767e33f
Add two additional references to the See Also section, which contain much
...
better descriptions of UTF-8 and related issues.
2002-10-30 11:49:05 +00:00
Sheldon Hearn
a4df5101a3
Use "deprecated" instead of "depreciated" where appropriate.
2002-10-30 07:49:11 +00:00