Displaying 1 result from an estimated 1 matches for "kvm_t".
Did you mean:
kvm_v
2008 Apr 20
1
kvm_open: kvm_nlist: No such file or directory
...hose to link to them.
I have since cleaned up my system and rebuilt (I believe) everything and
now the ports no longer work.
This is what I believe is the offending code snippet from
sysutils/wmmemmon's mem_freebsd.c file:
--------------------------------------------------------------
static kvm_t *kvm_data = NULL;
static int pageshift;
static struct nlist nlst[] = { {"_cp_time"}, {"_cnt"}, {0} };
/* initialize function */
void mem_init(void)
{
int pagesize = getpagesize();
pageshift = 0;
while (pagesize > 1) {
pageshift++;
pagesize >>= 1...