summaryrefslogtreecommitdiffstats
path: root/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Include <sys/proc.h> instead of depending on namespace pollution inbde2004-04-141-11/+9
| | | | | | | | | | | <sys/user.h> for the definition of TDF_SINTR. Fixed anachronous spelling of TDF_SINTR in a comment Demangled VCS ids. There were 2 misplaced copies of $FreeBSD$ and of the include before it. The vendor id infrastructure was edited. Fixed the only other remaining style bug since rev.1.1 (expansion of struct member names made a line too long).
* Include <sys/proc.h> for the definition of PS_INMEM instead ofbde2004-04-141-3/+2
| | | | | | depending on namespace pollution in <sys/user.h>. Reduced nearby include messes.
* A simple cache of uid->uname lookups and gid->gname lookups eliminateskientzle2004-04-143-12/+60
| | | | | almost 1/2 of the CPU time required to create an uncompressed archive and makes a noticable reduction in wallclock time.
* When all the links to a file have been dumped, don't forgetkientzle2004-04-131-1/+3
| | | | to free() the memory used to store the filename.
* Eliminate a lot of malloc/free calls by usingkientzle2004-04-131-4/+11
| | | | | a stack-allocated buffer for safe_fprintf formatting. Only if the result is too large do we resort to malloc.
* Manpage changes suggested by Irina Liakh.kientzle2004-04-132-21/+50
| | | | Also, add -h as a synonym for -H, for Linux Standards Base compliance.
* Replace ROUNDUP/ADVANCE with SA_SIZEluigi2004-04-131-7/+1
|
* The .DEFAULT target with no commands caused a null pointer dereference.ru2004-04-121-1/+6
| | | | | PR: bin/63405 Obtained from: NetBSD
* Style fixeskientzle2004-04-121-3/+2
| | | | Pointed out by: bde
* Document the new .warning directive.ru2004-04-121-2/+8
|
* Added the new .warning directive.ru2004-04-121-3/+33
| | | | Submitted by: Cyrille Lefevre
* Show link-level multicast packet counters with the -a option.ru2004-04-121-2/+14
|
* Fixed alignment of multicast addresses when printing that gotru2004-04-121-2/+4
| | | | broken in previous revision.
* Add DPADD to Makefile (thanks to Andrey for pointing this out).kientzle2004-04-125-24/+2
| | | | | Generally clean up Makefile, remove dmalloc references from source (there are better ways to do this than pollute the FreeBSD src tree).
* Use uint instead of u_intemax2004-04-091-10/+10
|
* Make sure Bluetooth stuff can be compiled on amd64emax2004-04-091-16/+16
| | | | Submitted by: ps
* Backout previous commit. It seems this comment applied to somethingmux2004-04-091-4/+0
| | | | | | else than I thought, and thus really needs to go away. Noticed by: ru
* Reintroduce a comment that was wrongly removed in revision 1.34.mux2004-04-091-0/+4
|
* Improve robustness of multibyte character handling (-m option), andtjr2004-04-091-19/+23
| | | | | simplify the read buffering now that we can feed partial multibyte characters to mbrtowc().
* Allow arguments to appear in any order.kientzle2004-04-082-66/+113
| | | | | | | | While I'm here, add a couple of extra sanity-checks to the argument parsing (reject -j -z, for instance) and update the docs a bit. Requested by: most everyone ;-)
* Document the newly-implemented -T option.kientzle2004-04-081-2/+10
|
* Add support for -T option on create.kientzle2004-04-083-6/+60
| | | | (Required by pkg_create.)
* Correct signature in alternative stub implementation of setup_acls()kientzle2004-04-071-1/+3
|
* Add -acl and a small blurb about it to the options list.trhodes2004-04-071-1/+8
| | | | Update date.
* Archive both access and default ACLs.kientzle2004-04-061-6/+19
|
* Connect bsdtar to the build.kientzle2004-04-061-0/+1
|
* Workaround for servers that ignore byte ranges when using chunkeddes2004-04-061-1/+1
| | | | | | encoding. MFC after: 3 days
* Initial commit for bsdtar.kientzle2004-04-059-0/+2977
|
* Unbreak compilation on RELENG_4.ru2004-04-051-1/+1
| | | | Submitted by: des
* Sort #includes, remove <sys/types.h> (made redundant by <sys/param.h>),des2004-04-051-4/+6
| | | | | | add <signal.h> (needed for sigaction()) Noticed by: Stefan Farfeleder <stefan@fafoe.narf.at>
* Be consistant while reporting error conditions.charnier2004-04-041-2/+2
|
* Add FBSDID. Use %ld to printf(3) a long (even if the number is small).charnier2004-04-041-3/+6
|
* Add FBSDID. Do not dot terminate errx(3) string.charnier2004-04-041-5/+6
|
* I can't believe that we had the Queen's birthday but not the King's...jmg2004-04-041-0/+1
| | | | Since my wife is Thai, she knows the proper date.
* Give find(1) the option -acl to locate files with extendedbmilekic2004-04-033-0/+54
| | | | | | | | | | | ACLs. This is similar to what ls(1) can do. It is handy to have it so that it can be used in conjunction with "-exec setfacl {} \;" (to find(1)), among others. This is the submitter's patch, but slightly modified. PR: bin/65016 Submitted by: Christian S.J. Peron <maneo@bsdpro.com>
* From the list of calendars, remove some duplicate entries which were addedcperciva2004-03-301-9/+3
| | | | | | | | | | | | as a result of mis-sorting. PR Submitter wanted to see a sorted list of non-national holidays followed by a sorted list of national holidays; I'm not going to do this, because I don't think we want to get into the "what is a nation?" debate. PR: docs/64848 Submitted by: Ulrich Spoerlein <q@uni.de> (approximately) MFC after: 3 days
* Use KERN_PROC_PROC instead of KERN_PROC_ALL on the call to kvm_getprocs(),gad2004-03-301-1/+5
| | | | | | so we get one line per process instead of one for each kernel-thread. Noticed by: ache & tjr
* Add a cross-reference to pkill(1), now that pkill is hooked up to the build.gad2004-03-271-0/+1
|
* bde also tells me that he is confident that P_SYSTEM will not workgad2004-03-271-8/+1
| | | | | any better on 4.x than it does on 5.2. If that's true then there is no point to the __FreeBSD_version check that I had added.
* Hook `pkill' (and thus `pgrep') to the standard buildworld.gad2004-03-271-0/+1
| | | | Reviewed by: freebsd-arch
* Some style(9)-ish improvements, courtesy of bde.gad2004-03-271-6/+6
| | | | Noticed by: bde
* Remove the _PATH_DEVNULL setting for "swapf". From the kvm_open(3)gad2004-03-261-3/+3
| | | | | | man page: The swapfile argument is currently unused. Noticed by: ru
* Remove the NEED_KMEM support meant for FreeBSD 3.x. This base-systemgad2004-03-261-9/+1
| | | | | | version isn't going to be committed to that branch... Noticed by: des
* Switch to checking P_KTHREAD instead of P_SYSTEM when deciding whatgad2004-03-261-3/+10
| | | | | | "system processes" to always ignore. Based on my testing with `-D', I am pretty sure this is what we want for 5.x-current. If my thinking is wrong, this also makes it easier to switch to a different check.
* Properly document the -M and -N options.ru2004-03-262-9/+19
|
* Correct the description of the -N option.ru2004-03-261-2/+2
|
* Avoid the manpage layering violation and low-level implementationru2004-03-261-3/+2
| | | | | details of libkvm, and just tell what the getbootfile(3) function will return, by using the text from netstat(1) and dmesg(8).
* Correct the description of options -N and -M to match reality.ru2004-03-261-4/+4
|
* Apply style.Makefile(5).ru2004-03-261-6/+4
|
* Send those -Debug messages to stderr, not stdout...gad2004-03-261-2/+2
|
OpenPOWER on IntegriCloud