summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix the return code from pthread_rwlock_try[rw|rd]lock() functions;bsd2002-03-153-6/+6
| | | | | | these should return EBUSY when the calling thread would block. MFC after: 2 weeks
* This sounds better.ru2002-03-151-1/+1
|
* mdoc(7) police: tiny fixes.ru2002-03-151-2/+4
|
* mdoc(7) police: expand contractions.ru2002-03-151-2/+2
|
* mdoc(7) police: hard sentence breaks, whitespace at EOL, contractions.ru2002-03-151-10/+18
|
* mdoc(7) police: Fix xref to timeradd(3).ru2002-03-151-1/+1
|
* mdoc(7) police: punctuation nit.ru2002-03-151-2/+1
|
* bde got caught by mdoc(7) police. :-)ru2002-03-152-2/+2
|
* mdoc(7) police: don't you notice the warnings?ru2002-03-151-1/+0
|
* Come on guys, you can't just take OpenBSD manpage and commit itru2002-03-151-30/+41
| | | | | | | | | over someone else's fixes; this is at least offensive. If you have problems doing a proper merge, we are here, your fellow committers. :-( Reapply markup fixes from revision 1.2 and fix some more. Also fix the $OpenBSD$ tag.
* mdoc(7) police: fix list width.ru2002-03-151-1/+1
|
* mdoc(7) police: .Va -> .Ev.ru2002-03-151-1/+1
|
* Argh, I constantly keep forgetting about these XXX's I put.ru2002-03-151-2/+1
|
* Fix a typo.ru2002-03-151-1/+1
|
* mdoc(7) police:ru2002-03-151-82/+62
| | | | | Restore fixes from revision 1.20 that got lost in revision 1.21 merge. Fixed some more.
* mdoc(7) police: fix markup and uudecode(1) -o option description.ru2002-03-151-6/+5
|
* Update to the RAID1 rebuild code.sos2002-03-152-21/+37
| | | | | | Run rebuild as a background process. Sponsored by: Advanis
* mdoc(7) police: kill hard sentence breaks.ru2002-03-151-2/+4
|
* mdoc(7) police: pedantry.ru2002-03-151-4/+1
|
* mdoc(7) police: markup fixes.ru2002-03-151-13/+20
|
* mdoc(7) police: fix a typo and markup.ru2002-03-151-2/+6
|
* mdoc(7) police: tiny fixes.ru2002-03-151-2/+2
|
* mdoc(7) police: GC duplicate VCS ID.ru2002-03-151-3/+0
|
* mdoc(7) police: misc fixes.ru2002-03-151-5/+4
|
* mdoc(7) police: kill whitespace at eol.ru2002-03-151-1/+1
|
* mdoc(7) police: tiny fixes.ru2002-03-151-2/+3
|
* mdoc(7) police: tiny fixes.ru2002-03-151-2/+2
|
* mdoc(7) police: use precise width specifier.ru2002-03-151-1/+1
|
* MFbed: Use German Release Entities for all articlesue2002-03-159-21/+20
|
* MFen 1.299ue2002-03-151-6/+24
|
* MFen 1.2, use DE release entitiesue2002-03-151-4/+4
|
* MFen 1.37ue2002-03-151-8/+38
|
* Pedantry to satisfy the bin/34159 author.ru2002-03-151-5/+5
|
* mdoc(7) police: Kill the (now extraneous) empty line. Previously,ru2002-03-151-1/+0
| | | | .Bd erroneously defaulted to -compact mode in the SYNOPSIS section.
* Embed boot images built as part of buildworld rather than theru2002-03-152-18/+74
| | | | | | | | | | | | | | | | | | | installed ones under /boot (which we may not even have in the case of a cross build). This introduced chicken and egg problem - we need boot images early in the "depend" stage but they have not yet been built. Work around this by excluding the generated makeboot.c source from the "depend" list; it's okay because we hardcode all its dependencies explicitly. We actually lose the dependency bit on <sys/types.h> but it's probably okay too as the only thing we use is the u_char datatype and this is unlikely to change. After all, it's normal for sloppy cleaning to cause problems. beast.FreeBSD.org running 5.0-CURRENT alpha has been able to cross build i386 world with this patch. Prodded by: gallatin
* Don't use temporary file to generate makedevs.c -- it's okayru2002-03-152-42/+38
| | | | | to write to makedevs.c directly as it's not protected by the .PRECIOUS attribute.
* * Stop other cpus when one cpu enters DDB and restart them after itdfr2002-03-151-11/+47
| | | | | | leaves. * Add a sync.i instruction to the code which writes out breakpoints to ensure that the breakpoint is seem by all cpus in the coherence domain.
* Remove trailing characters from #endif.obrien2002-03-151-3/+0
| | | | Actually this #endif is not needed, so remove leading characters also.
* * Remove a breakpoint() I accidentally left in for debugging :-(.dfr2002-03-152-14/+49
| | | | | * Make cpu_mp_probe() work before the VM system is available and initialise mp_maxid accordingly.
* Even more markup / whitespace fixes:murray2002-03-151-24/+26
| | | | | | | | * Use .Va instead of .Ev * Remove a trailing whitespace at EOL. * Quote some arguments. Submitted by: ru
* MFen.kuriyama2002-03-154-6/+9
|
* Bunch of manpage fixes from Bruce Montague.luigi2002-03-151-73/+77
|
* MFen (SA-02:13 is not yet translated).kuriyama2002-03-151-15/+44
|
* Batch of fixes to the configuration files from Bruce Montagueluigi2002-03-155-12/+11
|
* Remove all the custom toolchain knob tweaking.obrien2002-03-151-13/+0
| | | | | We are now using a native binutils, and you have to have CC=gcc in your /etc/make.conf to compile userland anyway.
* Giant pushdown for read/write/pread/pwrite syscalls.alfred2002-03-156-11/+26
| | | | | | | | | | | | | | | | | | | | | | | | kern/kern_descrip.c: Aquire Giant in fdrop_locked when file refcount hits zero, this removes the requirement for the caller to own Giant for the most part. kern/kern_ktrace.c: Aquire Giant in ktrgenio, simplifies locking in upper read/write syscalls. kern/vfs_bio.c: Aquire Giant in bwillwrite if needed. kern/sys_generic.c Giant pushdown, remove Giant for: read, pread, write and pwrite. readv and writev aren't done yet because of the possible malloc calls for iov to uio processing. kern/sys_socket.c Grab giant in the socket fo_read/write functions. kern/vfs_vnops.c Grab giant in the vnode fo_read/write functions.
* Minor style nit.obrien2002-03-151-0/+1
|
* Update for binutils_2_12_anoncvs_20020221.obrien2002-03-151-452/+547
|
* Uggg!! LD ME HARDER!!obrien2002-03-151-1/+1
| | | | | | | | Rev 1.2 changed the default emulation from ``elf64_sparc'' to ``elf32_sparc'' and I never noticed it after my review of rev 1.1. Backing the change of the default emulation out, and Wa-la!, I can now build a native [and usable] binutils. WTF, the "-m elf64_sparc" parameter handed to `ld' by `gcc' wasn't DTRT is beyond me.
* Bug fixes:alfred2002-03-151-5/+10
| | | | | | | | | | | Missed a place where the pipe sleep lock was needed in order to safely grab Giant, fix it and add an assertion to make sure this doesn't happen again. Fix typos in the PIPE_GET_GIANT/PIPE_DROP_GIANT that could cause the wrong mutex to get passed to PIPE_LOCK/PIPE_UNLOCK. Fix a location where the wrong pipe was being passed to PIPE_GET_GIANT/PIPE_DROP_GIANT.
OpenPOWER on IntegriCloud