History log of /dflybsd-src/lib/libkinfo/kinfo_file.c (Results 1 – 5 of 5)
Revision Date Author Comments
# abae1c58 11-Aug-2010 Matthew Dillon <dillon@apollo.backplane.com>

buildworld - Fix breakage

* Fix some _KERNEL_STRUCTURES breakage. This isn't a fantastic solution
but it works.

Reported-by: swildner


# d3ba8ff6 21-Dec-2004 Joerg Sonnenberger <joerg@dragonflybsd.org>

Change type of len to size_t.


# 6a27b30f 04-Dec-2004 Joerg Sonnenberger <joerg@dragonflybsd.org>

Return retval if the second sysctl failed, not NULL.


# 1c55bd1c 24-Nov-2004 Joerg Sonnenberger <joerg@dragonflybsd.org>

Add the basic of libkcore. Switch pstat to use kcore/kinfo backing,
defaulting to kcore for now.


# 7b124c9f 18-Nov-2004 Joerg Sonnenberger <joerg@dragonflybsd.org>

Add a new system library, libkinfo. It is intended to replace libkvm for
most userland tools, which want to deal with a living kernel, not
post-mortem analysation.

Change the kern.file backing from

Add a new system library, libkinfo. It is intended to replace libkvm for
most userland tools, which want to deal with a living kernel, not
post-mortem analysation.

Change the kern.file backing from a struct file array to a struct kinfo_file
array. The later is an independent structure, which includes the information
useful for userland. This allows changing the kernel-internals without
having to recompile libkinfo and derived programs. This is inspired by the
changes DES did in FreeBSD 5 (struct xfile).

Partly-obtained-from: FreeBSD (kern_descrip.c changes)

show more ...