tjr
6eb74185cd
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
tjr
cbcd393990
Add a missing return statement for the pwcs == NULL case (XSI extension).
2002-11-09 04:13:26 +00:00
fenner
1a1a58e225
Fix two typos.
2002-11-08 19:10:05 +00:00
nyan
fd118b4af5
- Recognize FAT partition on MBR and PC98 disks.
...
- Fix to convert to the name of partition.
2002-11-08 15:25:15 +00:00
rwatson
deb24d70c0
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
nyan
aecfe31a1d
MFi386: revision 1.4.
2002-11-08 14:49:14 +00:00
jhb
fa9c6cb843
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
jhb
c849fe6dd8
Don't set a value to a variable that we don't use.
2002-11-08 14:00:09 +00:00
jhb
481edf29a7
- Merge Write_FreeBSD() into Write_Disk().
...
- Miscellaneous cleanups.
2002-11-08 13:58:00 +00:00
rwatson
007eb8a428
License and blurb update authorized by Network Associates.
2002-11-07 20:37:04 +00:00
nyan
2a35147541
Fixed pc98 support.
...
(merged i386 changes from chunk.c 1.41 and disk.c 1.100)
2002-11-07 14:54:53 +00:00
jhb
2b9783b539
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
86d546ca0e
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
1b738abdbf
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
rwatson
002a74e570
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
jmallett
68fee857cb
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
rwatson
b2a246fa74
License update authorized by NAI: remove clause 3.
2002-11-05 01:42:35 +00:00
archie
8f843aa0d7
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
rwatson
0b563d81e7
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
rwatson
e9d17cac92
Update license, historical information.
2002-11-04 20:45:44 +00:00
rwatson
734f0e5f7a
Point out that the MAC Framework is considered experimental.
2002-11-04 20:42:58 +00:00
nsayer
67aa0a5dc4
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
tjr
fba58b2ee8
Add descriptions for some _PC_* variables from <sys/unistd.h> that
...
were missing.
2002-11-04 07:21:44 +00:00
alfred
e08a3f47cf
Backout "compatibility hack" for __sF.
...
Requested by: Steve Kargl <sgk@troutmask.apl.washington.edu> (submitter)
2002-11-04 03:23:56 +00:00
jhb
c558e52c47
Remove unused MBR gunk leftover from i386.
2002-11-03 21:18:17 +00:00
nyan
7479c2d936
Fix to compile for pc98.
2002-11-03 09:35:08 +00:00
marcel
c9f86b731d
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
c9d42873f8
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
27850e5112
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
24ab0000c9
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
phk
01e8832a61
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
kbyanc
c70af01e80
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
phk
e7002ff1e5
Fill in partition 2 with with "whole disk" parameters.
2002-11-01 16:28:19 +00:00
dfr
e71d8ae47f
* 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
tjr
7d29f30b2b
No need to include floatio.h here: vfscanf() no longer uses anything
...
it defines.
2002-11-01 05:13:01 +00:00
archie
d93f84495b
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
deischen
8733b4b726
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
phk
5dbff154c8
Style(9) improvements.
2002-10-31 07:56:40 +00:00
phk
a1b493e265
Set the sector size for the disk.
2002-10-31 07:55:38 +00:00
nyan
674ee79610
Restore to pc98 support.
2002-10-31 05:51:25 +00:00
nyan
0315c477ee
Use ${MACHINE} variable instead of using '.if .endif' each machines.
2002-10-31 05:43:49 +00:00
nyan
2616a319ce
Add '#include <err.h>' for warn().
2002-10-31 05:38:48 +00:00
jake
3523a0f8a2
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
91ccc1d808
Make __sF static. This can not be allowed to exist in 5.x.
2002-10-31 01:54:27 +00:00
phk
c925cf4a99
Untested alpha disk writer.
2002-10-30 20:54:22 +00:00
phk
01d1bdfdb0
Write out 15 sectors of boot code.
2002-10-30 20:52:07 +00:00
des
799d66dac6
Use __func__ and break a long line.
2002-10-30 15:01:29 +00:00
des
216181b022
Fix a bug in fenner's _fetch_writev() patch (rev 1.36)
...
Submitted by: fenner
2002-10-30 14:25:00 +00:00
tjr
f84979c549
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
sheldonh
9dcd1c6c1d
Use "deprecated" instead of "depreciated" where appropriate.
2002-10-30 07:49:11 +00:00