summaryrefslogtreecommitdiffstats
path: root/lib/libkvm/kvm_cd9660.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* I am retiring my old email address; replace it with my OpenBSD one.millert2019-01-251-2/+2
|
* Add va_nlink information to struct kinfo_file (so bump the shlib minor)guenther2016-10-021-1/+2
| | | | from Sebastien Marie
* include lock.h, needed for later headers but currently included by magictedu2014-12-161-1/+2
| | | | ok millert
* Prep for hidden visibility: move the vnode/file related functionguenther2013-11-161-1/+2
| | | | | | | | declarations, including _kvm_getftype(), into a new header, kvm_file.h, so that we don't have to pull <sys/vnode.h> into all the .c files. No more extern function declaration in .c files. ok millert@
* - add UNIX-domain socket info to struct kinfo_file2guenther2013-10-221-2/+2
| | | | | | | | | | - convert netstat from kvm_getfiles() to kvm_getfile2() using that - delete kvm_getfiles() and KERN_FILE as no longer used (bump libkvm's major) - rename kvm_getfile2() to kvm_getfiles(), kinfo_file2 to kinfo_file and KERN_FILE2 to KERN_FILE. ok deraadt@, millert@ ports scan sthen@
* rcsid[] and sccsid[] and copyright[] are essentially unmaintained (andderaadt2009-10-271-5/+1
| | | | | | | unmaintainable). these days, people use source. these id's do not provide any benefit, and do hurt the small install media (the 33,000 line diff is essentially mechanical) ok with the idea millert, ok dms
* Move KREAD define to kvm_private.hmillert2009-06-201-5/+2
|
* Split out cd9660 bits into their own .c file to avoid #define collisionsmillert2009-06-201-0/+60
with ufs and add also udf support. OK miod@