summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* This commit was generated by cvs2svn to compensate for changes in r98524,fenner2002-06-2186-4240/+10457
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import tcpdump 3.7.1, fromfenner2002-06-21116-5624/+13491
| | | | | | | | http://www.tcpdump.org/release/tcpdump-3.7.1.tar.gz
* | Release note added: rc.d.bmah2002-06-202-12/+40
| | | | | | | | | | MFCs noted: fold(1) -b/-s, pwd(1) -L, renice(8) -n, unexpand(1) -t, xargs(1) -I/-L.
* | Modified release note: ncurses 5.2-20020615, added version number forbmah2002-06-202-18/+10
| | | | | | | | | | | | | | | | lukemftp. Deleted release note: gawk. MFC noted: lukemftpd.
* | Add some #define's for mbuf annotations.luigi2002-06-201-0/+48
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As the comment in the code says, eventually there will be a proper data structure (e.g NetBSD's struct m_tag) to store chains of annotations, and mbuf-handling procedures will handle these chains in the correct way. Right now, these chains do not exist, and we just use the constants defined here to implement simple ad-hoc solutions to remove some global variables used so far to pass around informations about packets being processed. Global variables are not only ugly and make the code unreadable, they also prevent from using parallelism in network stack processing. (the 3-days MFC only refers to this commit, i.e. the PACKET_TAG_* constants; the full mechanism will be committed and MFC'ed on a longer timescale). MFC after: 3 days
* | Provide a way to keep out old ("historic") release notes from bloatingbmah2002-06-206-18/+102
| | | | | | | | | | | | the size of the rendered release notes. By default, any element with a role="historic" attribute won't get rendered in the output unless the INCLUDE_HISTORIC Makefile variable is defined.
* | Add a few files which are needed to build "passwd" now thatluigi2002-06-206-35/+891
| | | | | | | | the standard version of these files have been PAMified (and axed).
* | Remove GAWK. I removed it from the build 2 weeks ago and the worldobrien2002-06-20295-109135/+0
| | | | | | | | did not end. So finish the deed.
* | {f,s}usword -> {f,s}uword16. Implement {f,s}uword32.jake2002-06-202-46/+94
| | | | | | | | Requested by: peter
* | Change the way we internally store the mount options tomux2002-06-204-134/+83
| | | | | | | | | | | | | | | | | | | | a linked list. This is to allow the merging of the mount options in the MNT_UPDATE case, as the current data structure is unsuitable for this. There are no functional differences in this commit. Reviewed by: phk
* | Fix a bug fixed by NetBSD in revision 1.42 of parse.c by christos which causedjmallett2002-06-201-0/+8
| | | | | | | | | | | | | | an example Makefile I was showing someone just last night to report a variable as being recursive. Obtained from: NetBSD
* | More unsigned char casts to isupper(3).jmallett2002-06-201-2/+2
| | | | | | | | Obtained from: NetBSD
* | Merge ncurses 5.2-20020615 changes onto mainline.peter2002-06-201-3/+3
| |
* | Provide a heuristic for RCS conflicts.jmallett2002-06-201-2/+9
| | | | | | | | Obtained from: NetBSD
* | This commit was generated by cvs2svn to compensate for changes in r98503,peter2002-06-2024-257/+640
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Import ncurses 5.2-20020615 to fix a first-column display bug.peter2002-06-2025-260/+643
| | |
| * | Removed in latest importpeter2002-05-211-158/+0
| | |
* | | Look for wildcards, and balanced meta-characters such as { and } like NetBSDjmallett2002-06-201-2/+18
| | | | | | | | | | | | | | | | | | does. Obtained from: NetBSD
* | | Expand a buffer to reduce diffs to NetBSD.jmallett2002-06-201-2/+2
| | | | | | | | | | | | Obtained from: NetBSD
* | | Diff reduction for great justice against NetBSD, cast to unsigned char whenjmallett2002-06-204-18/+18
| | | | | | | | | | | | passing an argument to isspace(3).
* | | Implement SO_NOSIGPIPE option for sockets. This allows one to request thatalfred2002-06-204-2/+7
| | | | | | | | | | | | | | | | | | | | | an EPIPE error return not generate SIGPIPE on sockets. Submitted by: lioux Inspired by: Darwin
* | | o Remove an incorrect cast from obreak(). This cast would,alc2002-06-201-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | for example, break an sbrk(>=4GB) on 64-bit architectures even if the resource limit allowed it. o Correct an off-by-one error. o Correct a spelling error in a comment. o Reorder an && expression so that the commonly FALSE expression comes first. Submitted by: bde (bullets 1 and 2)
* | | Don't leak resources if fdcheckstd() fails during exec.alfred2002-06-201-5/+10
| | | | | | | | | | | | Submitted by: Mike Makonnen <makonnen@pacbell.net>
* | | Don't try to decode old-style options if the argv[1] begins with `-' and thesobomax2002-06-201-10/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | second character represents some option taking an argument. This fixes problem when ps(1) is invoked for examply as follows: $ ps -Ufoobar1234 the above example results in option string being interpreted as -U foobarp1234 - note extra `p'. Reported by: Vladimir Sotnikov <vovan@kyivstar.net> MFC after: 2 weeks
* | | Display the mutex name in the ^T status line if the selected threadiedowse2002-06-201-2/+3
| | | | | | | | | | | | | | | is blocked on a mutex. Prepend a '*' to distinguish this case as is done in top(1).
* | | Whitespace fixes to line-up EOL escapes whose right-most extraints changed injmallett2002-06-201-15/+15
| | | | | | | | | | | | the previous revision due to the biggest line changing.
* | | Cast sp to uintptr_t when doing a compare of it to STACKMAX which is a size_t.jmallett2002-06-202-5/+5
| | | | | | | | | | | | This messes up some indentation in mdef.h for some macros.
* | | It seems the hard lock on m4(1) is viewed as superfluous. Okay. It's gone.jmallett2002-06-201-1/+0
| | | | | | | | | | | | | | | | | | I'm sick of waiting on OpenBSD to make a number of changes anyway. If someone else wants to take over fixing m4(1), I'll be glad to make them aware of the existing issues.
* | | Quick fix for the type of the bitmap in sigset_t. It was an array ofbde2002-06-201-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4 u_ints but needs to be an array of 4 uint32_t's to work, at least if unsigned ints have less than 32 bits. It should be a non-array of 1 uint128_t on 128-bit machines, especially if u_int has 128 bits. The headers that declare uint32_t (actually __uint32_t) are intentionally not included here since this header should only be included by other headers. Fixed some style bugs (space instead of tab after #ifndef and #endif).
* | | Anonymize the "portmap" program to get better compatibility withdougb2002-06-203-4/+8
| | | | | | | | | | | | | | | | | | rpcbind in -current. Submitted by: Alexander Kabaev <ak03@gte.com>
* | | Update an 'XXX what is this?' type comment about suswintr and fuswintr.peter2002-06-203-6/+6
| | | | | | | | | | | | These are 16 bit short values used only by the profiling code.
* | | Style: put static qualifier on definition of static functions.tjr2002-06-201-7/+7
| | |
* | | Use suword16/fuword16 instead of susword/fusword - this has two differentpeter2002-06-205-23/+23
| | | | | | | | | | | | | | | definitions so far.. 16 bit on x86 and appears to be 32 bit on sparc64. Be explicit to avoid suprises.
* | | Bogusness may have happened using a variable assignment here before, butjmallett2002-06-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | proper parens mean that fd is always set by open(2) [in any part of C], and so we can accurately check for it returning -1, without feeling like we need to initialise fd to -1 in its declaration. In other words, fix a stylistic/bogus nit.
* | | Deorbit suibyte(). It was only used for split address space systemspeter2002-06-2011-72/+15
| | | | | | | | | | | | for supporting UIO_USERISPACE (ie: it wasn't used).
* | | time(1) does not use the shell to execute the specified utility, removetjr2002-06-201-6/+2
| | | | | | | | | | | | sentence stating it did.
* | | Remove references to UIO_USERISPACE which no longer exists.peter2002-06-202-6/+2
| | |
* | | Remove UIO_USERISPACE - we do not support any split instruction/datapeter2002-06-202-7/+0
| | | | | | | | | | | | | | | address space machines (eg: pdp-11) and are not likely to ever do so. Nothing in our kernel sets this.
* | | Make it obvious that command line arguments may be specified for the utilitytjr2002-06-202-10/+11
| | | | | | | | | | | | | | | that is to be invoked on the command line. Use "utility" instead of "command" in manual page and usage message for consistency with POSIX.
* | | That's right, you can shove your xargs(1) issues in my direction, and I'mjmallett2002-06-201-0/+2
| | | | | | | | | | | | also glad to review changes to it.
* | | ia32 %edx return comes from td_retval[1], not td_retval[0]peter2002-06-201-1/+1
| | | | | | | | | | | | Obtained from: dfr
* | | Use suword32/64 and fuword32/64 like elsewhere instead of inventingpeter2002-06-204-32/+37
| | | | | | | | | | | | suhword/fuhword.
* | | Add boot_serial and boot_multicons variables to set RB_SERIAL andpeter2002-06-208-0/+16
| | | | | | | | | | | | | | | RB_MULTIPLE since this seems to be the easiest way to add these flags for non-forth loaders etc.
* | | panic rather than fault and explode if we fail to contigmalloc a kernelpeter2002-06-201-0/+3
| | | | | | | | | | | | | | | stack. This is still bad(TM), but at least we have a clue when we get hit when contigmalloc fails.
* | | Use the canonical pmap_{new,dispose,swapin,swapout}_proc() functions,peter2002-06-201-16/+110
| | | | | | | | | | | | | | | in this case cut/pasted from sparc64 instead of messing with contigmalloc where it is not needed.
* | | Move the "- 1" into the RQB_FFS(mask) macro itself so thatpeter2002-06-207-8/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | implementations can provide a base zero ffs function if they wish. This changes #define RQB_FFS(mask) (ffs64(mask)) foo = RQB_FFS(mask) - 1; to #define RQB_FFS(mask) (ffs64(mask) - 1) foo = RQB_FFS(mask); On some platforms we can get the "- 1" for free, eg: those that use the C code for ffs64(). Reviewed by: jake (in principle)
* | | Use size_t consistently and complete some uncompleted code resulting in ajmallett2002-06-202-3/+6
| | | | | | | | | | | | | | | | | | | | | memory leak by assigning and freeing a variable appropriately as well as keeping track of the amount of allocated ram properly. MFC after: 1 month
* | | A function which takes no arguments has an argument list spelled (void) in thejmallett2002-06-202-2/+2
| | | | | | | | | | | | world of ANSI C.
* | | We have a place for extern declarations of global variables in ed.h, do notjmallett2002-06-202-3/+2
| | | | | | | | | | | | use main() to do it locally.
* | | Remove two unused variables.jmallett2002-06-201-2/+0
| | |
OpenPOWER on IntegriCloud