View | Details | Raw Unified | Return to bug 22435
Collapse All | Expand All

(-)linprocfs_misc.c Tue Oct 31 10:10:18 2000 (-2 / +2 lines)
Lines 65-72 Link Here
65
65
66
#include <i386/linux/linprocfs/linprocfs.h>
66
#include <i386/linux/linprocfs/linprocfs.h>
67
67
68
#define T2J(x) (((x) * 100) / stathz)
68
#define T2J(x) (((x) * 100) / (stathz ? stathz : hz))		/* ticks to jiffies */
69
#define T2S(x) ((x) / stathz)
69
#define T2S(x) ((x) / (stathz ? stathz : hz))		/* ticks to seconds */
70
70
71
int
71
int
72
linprocfs_domeminfo(curp, p, pfs, uio)
72
linprocfs_domeminfo(curp, p, pfs, uio)

Return to bug 22435