summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Catch a case spotted by Tor where files mmapped could leave garbage in thejulian1999-04-0513-86/+440
| | | | | | | | | | | | unallocated parts of the last page when the file ended on a frag but not a page boundary. Delimitted by tags PRE_MATT_MMAP_EOF and POST_MATT_MMAP_EOF, in files alpha/alpha/pmap.c i386/i386/pmap.c nfs/nfs_bio.c vm/pmap.h vm/vm_page.c vm/vm_page.h vm/vnode_pager.c miscfs/specfs/spec_vnops.c ufs/ufs/ufs_readwrite.c kern/vfs_bio.c Submitted by: Matt Dillon <dillon@freebsd.org> Reviewed by: Alan Cox <alc@freebsd.org>
* 1) Add the defines for the Mass Storage classn_hibma1999-04-051-10/+23
| | | | | 2) Add comments 3) Add UE_DIR to replace the querying of UE_IN directly
* change wrong names in prototypes (pipe to dev)n_hibma1999-04-051-3/+3
|
* Add the defines for the Iomega Zip 100 driven_hibma1999-04-052-0/+16
|
* bugfix: initialise timeout for usbd_device_request as well.n_hibma1999-04-051-3/+4
| | | | | moved statements around to reflect sequence in the struct, to make finding these discrepancies easier.
* Make ppbus compile under egcs. I'm not sure about this casting-to-union-peter1999-04-053-9/+14
| | | | -containing-the-type stuff, but gcc seemed to do it implicitly..
* Crap! I grabbed the wrong Makefile from the test machine.obrien1999-04-051-11/+5
|
* Fix type mismatch..peter1999-04-051-2/+2
|
* Fix .for loop continuation lines style bugs.obrien1999-04-051-7/+7
| | | | Submitted by: bde
* Turn off src/gnu/usr.bin/genclass -- it is OBE as it was part of libg++.obrien1999-04-051-2/+2
|
* Add iostream Info docs.obrien1999-04-052-0/+21
|
* Fixed disordering in previous 2 commits. Fixed an English error.bde1999-04-051-5/+6
|
* Fix damage introduced in previous commit.rnordier1999-04-052-4/+4
|
* Optimize better for space.rnordier1999-04-052-4/+4
| | | | Thanks to: jdp
* Correct contents for the EGCS compiler documentation.obrien1999-04-051-9/+11
| | | | | Currently it is unbuildable, but an info-aware developer should be able to get this working w/o too much trouble.
* There's not much point in the EXPORTMFS #ifdef. I've had this sittingpeter1999-04-051-3/+1
| | | | | | in my tree for 12+ months, and I just noticed that NetBSD have (I think, I've just seen the commit, not the change) just zapped it there. It wasn't in the options files or LINT either.
* Zap files not in cvs-1.10peter1999-04-052-427/+0
|
* Stray files that used to be in 1.9.x that are not in 1.10peter1999-04-051-71/+0
|
* kldload("ccd") if the ccd module isn't present.peter1999-04-051-1/+8
|
* libg++ is OBE.obrien1999-04-05635-132638/+0
|
* osfcn.h (part of libg++) is going away, so don't try to include it.obrien1999-04-051-2/+1
|
* Add GOTCHAS entries warning against using partition c for vinum, andgrog1999-04-051-0/+76
| | | | | | explaining the syntax of the 'read' command. Shot-in-foot-by: Bob Gustwick <gustwick@oldzoom.bga.com>
* Add debug flag DEBUG_EXITFREE to log problems freeing memory on exit.grog1999-04-051-0/+1
|
* remove_plex: If we don't find the plex in a volume to which itgrog1999-04-051-2/+6
| | | | claims to belong, remove it anyway.
* free_vinum: Clean out bdevsw entry before unloading kld.grog1999-04-051-7/+22
| | | | | | | | | Repeatedly-tripped-over-by: Vallo Kallaste <vallo@matti.ee> When VINUMDEBUG is set, free any memory found still allocated. Only log errors if DEBUG_EXITFREE is set.
* 'fr' macro: trace back to new kernel base 0xc0000000grog1999-04-051-1/+1
|
* Bump __FreeBSD_version to 400004 now that the __deregister_frame_infojdp1999-04-051-2/+2
| | | | | | bug is fixed in the dynamic linker. I think it might be handy to know about this to deal with some coming make world bootstrapping issues.
* Resolve undefined weak references to a value of 0. This solves thejdp1999-04-051-1/+13
| | | | | | "__deregister_frame_info" problem that was seen when combining a program linked using the old gcc with shared libraries that were built using egcs.
* Represent the value 2**32 correctly in nroff. Previously, the troffgrog1999-04-051-1/+3
| | | | | | | operator up was being omitted, and the result was 232, a slightly lower value. Observed-by: Bill Vermillion <bill@bilver.magicnet.net>
* _G_config.h is now dynamically created.obrien1999-04-051-85/+0
|
* Fix space padding that was causing a problem in creating the finalobrien1999-04-041-2/+3
| | | | CPP_PREDEFINES.
* 4.0 will offer EGCS over GCC to the world.obrien1999-04-042-0/+6
|
* Add prototypes for pread and pwrite.dt1999-04-041-0/+2
|
* Rename a function to avoid conflict with the new syscall 'pwrite'.dt1999-04-044-18/+18
|
* Add wrappers for pread and pwrite syscalls.dt1999-04-046-11/+119
|
* Regenerate (padding for pread and pwrite).dt1999-04-046-8/+10
|
* Add standard padding argument to pread and pwrite syscall. That should make themdt1999-04-048-158/+129
| | | | | | | | | NetBSD compatible. Add parameter to fo_read and fo_write. (The only flag FOF_OFFSET mean that the offset is set in the struct uio). Factor out some common code from read/pread/write/pwrite syscalls.
* Remove a lingering reference to libg++.obrien1999-04-041-3/+2
|
* Remove the string ">>> FreeBSD/i386 BOOT". I need to reduce the size ofobrien1999-04-042-4/+4
| | | | | boot2 by 16 bytes. I expect this to be temperary until the boot2 authors can do the proper fix.
* Add mkstemps to the man page, and create a link for it.imp1999-04-042-2/+14
| | | | | Obtained from: OpenBSD Poked in the eye about committing new functions without a manpage: obrien
* Conditionalize one more i386'ism.obrien1999-04-042-2/+6
|
* Attempt to creating the right ``tm.h'' file for the Alpha.obrien1999-04-041-1/+5
|
* Attempt at creating the right ``tm.h'' file for the Alpha.obrien1999-04-041-1/+5
|
* Remove mkstemp.c from build. This is now in libc.imp1999-04-041-3/+1
| | | | Tested by: make buildworld
* Add mkstemps from OpenBSD. This has been in my tree for months andimp1999-04-041-7/+24
| | | | | | hasn't caused any problems until the egcs import. This fix breaks the world build, but my very next commit will remove mkstemps from the egcs build.
* Fix a division which I had made a multiplication.phk1999-04-041-3/+5
| | | | | | Fix return value from ntp_adjtime(). Submitted by: jhay
* didn't get latest version:obrien1999-04-041-3/+2
| | | | Don't conditionalize -I${.CURDIR}/../cc_tools
* This is old C++ code -- no need for rtti or exceptions.obrien1999-04-041-1/+2
|
* Minimum set of changes to switch from Gcc 2.7.2 (in contrib/gcc) to Egcs 1.1.2obrien1999-04-0419-196/+560
| | | | (in contrib/egcs)
* Further backouts and changes to the example.cracauer1999-04-041-8/+22
| | | | | getopt in bourne shell is in fact hard. Maybe perl isn't *that* bad after all...
OpenPOWER on IntegriCloud