003 File Manager
Current Path:
/usr/src/usr.bin/top
usr
/
src
/
usr.bin
/
top
/
📁
..
📄
Makefile
(194 B)
📄
Makefile.depend
(352 B)
📄
commands.c
(11.93 KB)
📄
commands.h
(1004 B)
📄
display.c
(27.41 KB)
📄
display.h
(1.25 KB)
📄
layout.h
(999 B)
📄
loadavg.h
(735 B)
📄
machine.c
(41.25 KB)
📄
machine.h
(2.5 KB)
📄
screen.c
(6.49 KB)
📄
screen.h
(1.05 KB)
📄
top.1
(13 KB)
📄
top.c
(27.25 KB)
📄
top.h
(1.65 KB)
📄
username.c
(3.36 KB)
📄
username.h
(974 B)
📄
utils.c
(7.64 KB)
📄
utils.h
(654 B)
Editing: loadavg.h
/* * Top - a top users display for Berkeley Unix * * Defines required to access load average figures. * * This include file sets up everything we need to access the load average * values in the kernel in a machine independent way. First, it sets the * typedef "load_avg" to be either double or long (depending on what is * needed), then it defines these macros appropriately: * * loaddouble(la) - convert load_avg to double. * intload(i) - convert integer to load_avg. * * $FreeBSD$ */ #ifndef LOADAVG_H #define LOADAVG_H #include <sys/param.h> typedef long pctcpu; #define pctdouble(p) ((double)(p) / FSCALE) typedef fixpt_t load_avg; #define loaddouble(la) ((double)(la) / FSCALE) #endif /* LOADAVG_H */
Upload File
Create Folder