History log of /openbsd/usr.bin/fstat/fuser.c (Results 1 – 8 of 8)
Revision Date Author Comments
# bf198cc6 25-Jan-2019 millert <millert@openbsd.org>

I am retiring my old email address; replace it with my OpenBSD one.


# dee31871 16-Sep-2018 millert <millert@openbsd.org>

Use user_from_uid(3) and group_from_gid(3) in a few more places
that do repeated lookups. OK tb@


# b9fc9a72 16-Jan-2015 deraadt <deraadt@openbsd.org>

Replace <sys/param.h> with <limits.h> and other less dirty headers where
possible. Annotate <sys/param.h> lines with their current reasons. Switch
to PATH_MAX, NGROUPS_MAX, HOST_NAME_MAX+1, LOGIN_N

Replace <sys/param.h> with <limits.h> and other less dirty headers where
possible. Annotate <sys/param.h> lines with their current reasons. Switch
to PATH_MAX, NGROUPS_MAX, HOST_NAME_MAX+1, LOGIN_NAME_MAX, etc. Change
MIN() and MAX() to local definitions of MINIMUM() and MAXIMUM() where
sensible to avoid pulling in the pollution. These are the files confirmed
through binary verification.
ok guenther, millert, doug (helped with the verification protocol)

show more ...


# 978d6a54 26-Oct-2014 guenther <guenther@openbsd.org>

Move the #define _KERNEL wrapping to only cover <sys/file.h>


# befa8912 10-Jul-2014 deraadt <deraadt@openbsd.org>

expected user.h fallout; _KERNEL case needs manual pull of ucred.h


# cef0bbe1 22-Oct-2013 guenther <guenther@openbsd.org>

- add UNIX-domain socket info to struct kinfo_file2
- convert netstat from kvm_getfiles() to kvm_getfile2() using that
- delete kvm_getfiles() and KERN_FILE as no longer used (bump libkvm's major)
-

- add UNIX-domain socket info to struct kinfo_file2
- 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@

show more ...


# 64f4df25 19-Jul-2009 millert <millert@openbsd.org>

Hook up "text" (executable) output and implement for fuser too.
Man page bits adapted from FreeBSD. OK miod@


# 666d0576 08-Jul-2009 millert <millert@openbsd.org>

Add POSIX-compliant fuser mode to fstat. Originally based on
a diff from Peter Werner but largely rewritten to use kinfo_file2.
OK deraadt@ with man fixes from jmc@ and sobrado@