summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* The CAM system has it's own ideas of what locks are to be held by whom.phk2002-10-111-19/+24
| | | | | | | | | | | | | So do GEOM. Not a pretty sight. Take all the interesting stuff out of GEOM::disk_create(), and leave just the creation of the fake dev_t. Schedule the topology munging to happen in the g_event thread with g_call_me(). This makes disk_create() pretty lock-agnostic, almost lock-atheist. Tripped over by: peter Sponsored by: DARPA & NAI Labs
* GDB plays nice with Binutils again.obrien2002-10-111-1/+0
|
* s/modunload/kldunloadimp2002-10-111-1/+1
|
* SWI_SWITCH and SWI_NOSWITCH were OBE a long time ago.jhb2002-10-111-12/+5
|
* Use the new FreeBSD vectors from Binutils 2.13.1.obrien2002-10-112-2/+2
|
* Use the new freebsd output format from Binutils 2.13.1.obrien2002-10-113-3/+3
|
* Add typedefs for size_t and ssize_t, allow struct iovec to be definedmike2002-10-111-2/+18
| | | | | in other headers, add a visibility conditional to avoid namespace pollution in the standards case.
* Fix %z to always print values as signed like it is supposed to.jhb2002-10-111-2/+2
| | | | | Reviewed by: bde Tested on: i386 in ddb
* Binutils 2.13 grew some warnings that make WARNS != 0 now impossible onobrien2002-10-111-1/+1
| | | | sparc64.
* No need to hold Giant will harvesting RNG data; change callout_init sosam2002-10-112-2/+4
| | | | this no longer happens for callbacks.
* This should enable 10160 support. As best as I can tell, the samemjacob2002-10-113-4/+27
| | | | | | | f/w as 12160 is used, and otherwise, this is just a single channel variant of the 10160. MFC after: 0 days
* Fix the code so that it no longer on alpha refers to the now nonexistentmjacob2002-10-111-17/+1
| | | | | | | | | | pci_cvt_to_bwx. This doesn't necessarily make bge(4) now actually *work* on an alpha. It loads, configures, and then about 30 seconds later, my XP1000 hard freezes. But, hey, it's a start. Obtained from: gallatin@freebsd.org
* Turn off GDB for now. It and the new binutils just aren't agreeing on ourobrien2002-10-111-0/+1
| | | | binary format.
* This commit was generated by cvs2svn to compensate for changes in r104912,ru2002-10-111-1/+1
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Hyphenation of characters with codes above 128 was broken.ru2002-10-111-1/+1
| | | | | | | | | | This my patch has just been committed to the Groff source repository.
| * Removed files not present in v1.18.1 import.ru2002-10-1116-3644/+0
| |
* | Use `unsigned long' instead of `u_long' so that this header compilesmike2002-10-111-2/+2
| | | | | | | | in X/Open case where `u_long' isn't available.
* | Updated release notes: Binutils 2.13.1 pre-release (20021011),bmah2002-10-112-14/+8
| | | | | | | | GCC 3.2.1 pre-release (20021009), groff 1.18.1.
* | Change iov_base's type from `char *' to the standard `void *'. Allmike2002-10-1121-39/+54
| | | | | | | | | | uses of iov_base which assume its type is `char *' (in order to do pointer arithmetic) have been updated to cast iov_base to `char *'.
* | Build kerberized versions of the PAM library, and install themru2002-10-113-2/+10
| | | | | | | | | | | | | | into corresponding distributions during "make release". (This also cleans the "slib" distribution up from the .o files.) PR: misc/43825 (inspired by)
* | Pass -o option to crunchgen(1) to ensure object files end upru2002-10-111-2/+2
| | | | | | | | | | | | | | | | | | | | in seperate directories. This mostly affects RELENG_4 where not doing so results in ${CHROOTDIR}/usr/src/release being filled with object files, and "srelease" distribution having them in. PR: misc/43825 Prodded by: re (murray)
* | Slight overhaul of arc4random() and friends.phk2002-10-113-29/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | One bug fixed: Use getmicrouptime() to trigger reseeds so that we cannot be tricked by a clock being stepped backwards. Express parameters in natural units and with natural names. Don't use struct timeval more than we need to. Various stylistic and readability polishing. Introduce arc4rand(void *ptr, u_int len, int reseed) function which returns a stream of pseudo-random bytes, observing the automatic reseed criteria as well as allowing forced reseeds. Rewrite arc4random() in terms of arc4rand(). Sponsored by: DARPA & NAI Labs.
* | Add myself.cognet2002-10-111-0/+1
| | | | | | | | Reviewed by: mux (mentor)
* | Update for Groff 1.18.1.ru2002-10-111-0/+2
| |
* | New Russian hyphenation patterns from the teTeX distribution.ru2002-10-113-4845/+6
| | | | | | | | Use the new .hpfa request to append them to English patterns.
* | This commit was generated by cvs2svn to compensate for changes in r104895,ru2002-10-111-0/+3893
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Russian hyphenation patterns from teTeX.ru2002-10-111-0/+3893
| /
* | - Add support for IPC_64 extensions into shmctl(2), semctl(2) and msgctl(2);sobomax2002-10-118-51/+669
| | | | | | | | | | | | | | | | | | | | | | | | | | - add wrappers for mmap2(2) and ftruncate64(2) system calls; - don't spam console with printf's when VFAT_READDIR_BOTH ioctl(2) is invoked; - add support for SOUND_MIXER_READ_STEREODEVS ioctl(2); - make msgctl(IPC_STAT) and IPC_SET actually working by converting from BSD msqid_ds to Linux and vice versa; - properly return EINVAL if semget(2) is called with nsems being negative. Reviewed by: marcel Approved by: marcel Tested with: LSB runtime test
* | Do not allow empty GIDs for non-NIS entries.maxim2002-10-111-0/+7
| | | | | | | | MFC after: 2 weeks
* | koi8-r was repo-copied to ru.KOI8-R by joe@.ru2002-10-113-138/+2
| |
* | Remove an unused variable.phk2002-10-111-7/+0
| |
* | Trapdoor access to cd%da and cd%c so they still work, but do not let themphk2002-10-111-0/+24
| | | | | | | | show up in /dev.
* | Sync with 2.13. Reduce forking by using multiple sed expressions ratherobrien2002-10-111-4/+6
| | | | | | | | | | | | | | | | than piping thru tr(1). Also prefer case over for+test, as case will handle regex's nicely. Note we can't exactly follow the real 2.13 genscripts.sh as we wind up with multiple "'s in search paths. It is too late tonight to track down why.
* | Use malloc(9)'s M_ZERO rather than explicit bzero(9) call.phk2002-10-111-2/+2
| |
* | witch over to the new FreeBSD bfd vec and emulationobrien2002-10-112-5/+5
| |
* | Switch over to the new FreeBSD emulation and bfd vecobrien2002-10-112-5/+5
| |
* | Groff 1.18.1 comes in with ANSI color support, enabled by default.ru2002-10-113-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | In "nroff" mode, italic font renders as an underlined text, which makes it indistinguishable from the bold text on color monitors (cons25 terminal type), yet it requires the less(1)'s -R option. (Refer to the new grotty(1) manpage for details.) So turn off the color support for now (when generating catpages), until we figure out what do we do with this new feature. I have a patch for grotty(1) that tells it to use the "reverse video" attribute to render the italic font. Once this is accepted, we can turn color support back on (if there won't be any objections from the community).
* | This commit was generated by cvs2svn to compensate for changes in r104871,obrien2002-10-112-0/+112
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Import of Binutils from the FSF 2.13 branch (just pre-.1 release).obrien2002-10-112-0/+112
| | | | | | | | | | | | These bits are taken from the FSF anoncvs repo on 11-Oct-2002 22:39:35 PDT.
* | | illegal.cc was renamed to invalid.cc. Bring in the fixru2002-10-111-2/+4
| | | | | | | | | | | | that makes almost all characters above 128 "valid".
* | | Upgrade to Groff 1.18.1.ru2002-10-1113-58/+206
| | |
* | | Merge Groff 1.18.1 changes.ru2002-10-115-461/+1720
| | |
* | | Use stock (FSF) version of this file.ru2002-10-114-248/+1902
| | |
* | | This commit was generated by cvs2svn to compensate for changes in r104865,ru2002-10-1115-3584/+0
| | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
* | | Removed files not present in v1.18.1 import.ru2002-10-111-62/+0
| | |
* | | This commit was generated by cvs2svn to compensate for changes in r104862,ru2002-10-11531-40247/+125061
|\ \ \ | | |/ | |/| | | | which included commits to RCS files with non-trunk default branches.
| * | Virgin import of FSF groff v1.18.1ru2002-10-11544-43708/+131755
| | |
| * | From the ChangeLog:ru2002-10-091-7/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | : 2002-10-07 Werner LEMBERG <wl@gnu.org> : : * tmac/doc-common (Ss): Add final `.ns' (similar to `.Sh') to : suppress additional whitespace after the header. : : 2002-10-07 Ruslan Ermilov <ru@FreeBSD.org> : : * tmac/doc-common (doc-volume-operating-system-ateol): New flag. : (Dt): Use it to improve language localization (especially Russian : and French).
| * | Support for FreeBSD releases 4.6, 4.6.2, 4.7 and 4.8. From ChangeLog:ru2002-09-301-0/+4
| | | | | | | | | | | | | | | | | | | | | : 2002-09-27 Ruslan Ermilov <ru@FreeBSD.org> : : * tmac/doc-common (ds-operating-system-FreeBSD-4.*): New version : strings.
* | | Yesterday was the 10th month of the year, not the 11st.obrien2002-10-111-2/+2
| | |
OpenPOWER on IntegriCloud