⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 m_386bsd.c

📁 unix系统下top命令的源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * top - a top users display for Unix * * SYNOPSIS:  For a 386BSD system *	      Note memory statistisc and process sizes could be wrong, *	      by ps gets them wrong too... * * DESCRIPTION: * This is the machine-dependent module for BSD4.3 NET/2 386bsd * READ THE NOTE AT THE END OF "INSTALL" BEFORE COMPILING. * Works for: *	i386 PC * * LIBS: -lutil * * AUTHOR:  Steve Hocking (adapted from Christos Zoulas <christos@ee.cornell.edu>) *	    Updated by Andrew Herbert <andrew@werple.apana.org.au> */#include <sys/types.h>#include <sys/signal.h>#include <sys/param.h>#include <stdio.h>#include <nlist.h>#include <math.h>#include <kvm.h>#include <sys/errno.h>#include <sys/kinfo.h>#include <sys/kinfo_proc.h>#ifdef notyet#define time __time#define hz __hz#include <sys/kernel.h>#undef time#undef hz#endif#include <sys/dir.h>#include <sys/dkstat.h>#include <sys/file.h>#include <sys/time.h>#include <sys/vmmeter.h>/* #define PATCHED_KVM		/* READ THE FOLLOWING NOTE: */				/* define this ONLY if your version of 386bsd				   has patchkit 2.4 installed. *//* #define TOTAL_WORKING */	/* Uncomment when the total structure in */				/* the kernel actually works */#define DOSWAP#include "top.h"#include "machine.h"#include "utils.h"#define VMUNIX	"/386bsd"#define KMEM	"/dev/kmem"#define MEM	"/dev/mem"#ifdef DOSWAP#define SWAP	"/dev/drum"#endiftypedef struct _kinfo {        struct proc ki_p;      /* proc structure */        struct eproc ki_e;     /* extra stuff */} KINFO;/* get_process_info passes back a handle.  This is what it looks like: */struct handle{    KINFO **next_proc;	/* points to next valid proc pointer */    int remaining;		/* number of pointers remaining */};/* declarations for load_avg */#include "loadavg.h"#define PP(pp, field) ((pp)->ki_p . field)#define EP(pp, field) ((pp)->ki_e . field)#define VP(pp, field) ((pp)->ki_e.e_vm . field)/* define what weighted cpu is.  */#define weighted_cpu(pct, pp) (PP((pp), p_time) == 0 ? 0.0 : \			 ((pct) / (1.0 - exp(PP((pp), p_time) * logcpu))))/* what we consider to be process size: */#define PROCSIZE(pp) (VP((pp), vm_tsize) + VP((pp), vm_dsize) + VP((pp), vm_ssize))/* definitions for indices in the nlist array */#define X_CCPU		0#define X_CP_TIME	1#define X_HZ		2#define X_AVENRUN	3#define X_TOTAL		4#define X_PG_FREE	5#define X_PG_ACTIVE	6#define X_PG_INACTIVE	7#define X_PG_WIRED	8static struct nlist nlst[] = {    { "_ccpu" },		/* 0 */    { "_cp_time" },		/* 1 */    { "_hz" },			/* 2 */    { "_averunnable" },		/* 3 */    { "_total"},		/* 4 */    { "_vm_page_free_count" },	/* 5 */    { "_vm_page_active_count" },	/* 6 */    { "_vm_page_inactive_count" },/* 7 */    { "_vm_page_wire_count" },	/* 8 */    { 0 }};/* *  These definitions control the format of the per-process area */static char header[] =  "  PID X        PRI NICE  SIZE   RES STATE   TIME   WCPU    CPU COMMAND";/* 0123456   -- field to fill in starts at header+6 */#define UNAME_START 6#define Proc_format \	"%5d %-8.8s %3d %4d %5s %5s %-5s %6s %5.2f%% %5.2f%% %.16s"/* process state names for the "STATE" column of the display *//* the extra nulls in the string "run" are for adding a slash and   the processor number when needed */char *state_abbrev[] ={    "", "sleep", "WAIT", "run\0\0\0", "start", "zomb", "stop"};/* values that we stash away in _init and use in later routines */static double logcpu;/* these are retrieved from the kernel in _init */static          long hz;static load_avg  ccpu;static          int  ncpu = 0;/* these are offsets obtained via nlist and used in the get_ functions */static unsigned long cp_time_offset;static unsigned long avenrun_offset;/* these are for calculating cpu state percentages */static long cp_time[CPUSTATES];static long cp_old[CPUSTATES];static long cp_diff[CPUSTATES];/* these are for detailing the process states */int process_states[7];char *procstatenames[] = {    "", " sleeping, ", " ABANDONED, ", " running, ", " starting, ",    " zombie, ", " stopped, ",    NULL};/* these are for detailing the cpu states */int cpu_states[4];char *cpustatenames[] = {    "user", "nice", "system", "idle", NULL};/* these are for detailing the memory statistics */int memory_stats[8];char *memorynames[] = {#ifdef	TOTAL_WORKING    "Real: ", "K/", "K ", "Virt: ", "K/",    "K ", "Free: ", "K", NULL#else    " Free: ", "K ", " Active: ", "K ", " Inactive: ",    "K ", " Wired: ", "K ", NULL#endif};/* these are for keeping track of the proc array */static int bytes;static int nproc;static int onproc = -1;static int pref_len;static KINFO *pbase;static KINFO **pref;/* these are for getting the memory statistics */static int pageshift;		/* log base 2 of the pagesize *//* define pagetok in terms of pageshift */#define pagetok(size) ((size) << pageshift)machine_init(statics)struct statics *statics;{    register int i = 0;    register int pagesize;    char buf[1024];#if 0		/* some funny stuff going on here */    if (kvm_openfiles(NULL, NULL, NULL) == -1);	return -1;#else    kvm_openfiles(VMUNIX, NULL, NULL);#endif    /* get the list of symbols we want to access in the kernel */    (void) kvm_nlist(nlst);    if (nlst[0].n_type == 0)    {	fprintf(stderr, "top: nlist failed\n");	return(-1);    }    /* make sure they were all found */    if (i > 0 && check_nlist(nlst) > 0)    {	return(-1);    }    /* get the symbol values out of kmem */    (void) getkval(nlst[X_HZ].n_value,     (int *)(&hz),	sizeof(hz),	    nlst[X_HZ].n_name);    (void) getkval(nlst[X_CCPU].n_value,   (int *)(&ccpu),	sizeof(ccpu),	    nlst[X_CCPU].n_name);    /* stash away certain offsets for later use */    cp_time_offset = nlst[X_CP_TIME].n_value;    avenrun_offset = nlst[X_AVENRUN].n_value;    /* this is used in calculating WCPU -- calculate it ahead of time */    logcpu = log(loaddouble(ccpu));    pbase = NULL;    pref = NULL;    nproc = 0;    onproc = -1;    /* get the page size with "getpagesize" and calculate pageshift from it */    pagesize = getpagesize();    pageshift = 0;    while (pagesize > 1)    {	pageshift++;	pagesize >>= 1;    }    /* we only need the amount of log(2)1024 for our conversion */    pageshift -= LOG1024;    /* fill in the statics information */    statics->procstate_names = procstatenames;    statics->cpustate_names = cpustatenames;    statics->memory_names = memorynames;    /* all done! */    return(0);}char *format_header(uname_field)register char *uname_field;{    register char *ptr;    ptr = header + UNAME_START;    while (*uname_field != '\0')    {	*ptr++ = *uname_field++;    }    return(header);}get_system_info(si)struct system_info *si;{    long total;    load_avg avenrun[3];    /* get the cp_time array */    (void) getkval(cp_time_offset, (int *)cp_time, sizeof(cp_time),		   "_cp_time");    (void) getkval(avenrun_offset, (int *)avenrun, sizeof(avenrun),		   "_avenrun");    /* convert load averages to doubles */    {	register int i;	register double *infoloadp;	load_avg *avenrunp;#ifdef KINFO_LOADAVG	struct loadavg sysload;	int size;	getkerninfo(KINFO_LOADAVG, &sysload, &size, 0);#endif	infoloadp = si->load_avg;	avenrunp = avenrun;	for (i = 0; i < 3; i++)	{#ifdef KINFO_LOADAVG	    *infoloadp++ = ((double) sysload.ldavg[i]) / sysload.fscale;#endif	    *infoloadp++ = loaddouble(*avenrunp++);	}    }    /* convert cp_time counts to percentages */    total = percentages(CPUSTATES, cpu_states, cp_time, cp_old, cp_diff);    /* sum memory statistics */    {#ifdef TOTAL_WORKING	static struct vmtotal total;	int size;	/* get total -- systemwide main memory usage structure */#ifdef KINFO_METER	getkerninfo(KINFO_METER, &total, &size, 0);#else	(void) getkval(nlst[X_TOTAL].n_value, (int *)(&total), sizeof(total),		nlst[X_TOTAL].n_name);#endif	/* convert memory stats to Kbytes */	memory_stats[0] = -1;	memory_stats[1] = pagetok(total.t_arm);	memory_stats[2] = pagetok(total.t_rm);	memory_stats[3] = -1;	memory_stats[4] = pagetok(total.t_avm);	memory_stats[5] = pagetok(total.t_vm);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -