21 lines
356 B
C
21 lines
356 B
C
/* $NetBSD: procfs_machdep.c,v 1.2 2001/01/18 17:48:01 tv Exp $ */
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/mount.h>
|
|
#include <sys/vnode.h>
|
|
#include <miscfs/procfs/procfs.h>
|
|
|
|
|
|
/*
|
|
* Linux-style /proc/cpuinfo.
|
|
* Only used when procfs is mounted with -o linux.
|
|
*/
|
|
int
|
|
procfs_getcpuinfstr(char *buf, int *len)
|
|
{
|
|
*len = 0;
|
|
|
|
return 0;
|
|
}
|