[BACK]Return to procfs_machdep.c CVS log [TXT][DIR] Up to [local] / sys / arch / arm / arm

Annotation of sys/arch/arm/arm/procfs_machdep.c, Revision 1.1

1.1     ! nbrk        1: /*     $OpenBSD: procfs_machdep.c,v 1.1 2004/02/01 05:09:48 drahn Exp $        */
        !             2: /*     $NetBSD: procfs_machdep.c,v 1.2 2003/07/15 00:24:39 lukem Exp $ */
        !             3:
        !             4: #include <sys/param.h>
        !             5: #include <sys/systm.h>
        !             6: #include <sys/mount.h>
        !             7: #include <sys/vnode.h>
        !             8: #include <miscfs/procfs/procfs.h>
        !             9:
        !            10:
        !            11: #if 0
        !            12: /*
        !            13:  * Linux-style /proc/cpuinfo.
        !            14:  * Only used when procfs is mounted with -o linux.
        !            15:  */
        !            16: int
        !            17: procfs_getcpuinfstr(char *buf, int *len)
        !            18: {
        !            19:        *len = 0;
        !            20:
        !            21:        return 0;
        !            22: }
        !            23: #endif

CVSweb