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

📄 m_bsdos2.c

📁 unix系统下top命令的源代码
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * top - a top users display for Unix * * SYNOPSIS:  For a BSD/OS 2.X system (based on the 4.4BSD Lite system) *	      Note process resident sizes could be wrong, but ps shows *	      zero for them too.. * * DESCRIPTION: * This is the machine-dependent module for BSD/OS 2.X (based on 4.4BSD Lite) * Works for: *	i386 and maybe sparc * * CFLAGS: -DHAVE_GETOPT * * LIBS: -lkvm * * AUTHOR:  Jeff Polk <polk@bsdi.com> based on the m_44bsd.c code  *          by Christos Zoulas <christos@ee.cornell.edu> */#include <sys/types.h>#include <sys/signal.h>#include <sys/param.h>#include "os.h"#include <stdio.h>#include <nlist.h>#include <math.h>#include <kvm.h>#include <sys/errno.h>#include <sys/sysctl.h>#include <sys/cpustats.h>#include <sys/resource.h>#include <sys/dir.h>#include <sys/dkstat.h>#include <sys/file.h>#include <sys/time.h>#define DOSWAPstatic int check_nlist __P((struct nlist *));static int getkval __P((unsigned long, int *, int, char *));extern char* printable __P((char *));#include "top.h"#include "machine.h"#include "utils.h"#define VMUNIX	"/bsd"#define KMEM	"/dev/kmem"#define MEM	"/dev/mem"#ifdef DOSWAP#define SWAP	"/dev/drum"#endif/* get_process_info passes back a handle.  This is what it looks like: */struct handle{    struct kinfo_proc **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)->kp_proc . field)#define EP(pp, field) ((pp)->kp_eproc . field)#define VP(pp, field) ((pp)->kp_eproc.e_vm . field)/* define what weighted cpu is.  */#define weighted_cpu(pct, pp) (PP((pp), p_swtime) == 0 ? 0.0 : \			 ((pct) / (1.0 - exp(PP((pp), p_swtime) * 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_HZ		1static struct nlist nlst[] = {    { "_ccpu" },		/* 0 */    { "_hz" },			/* 1 */    { 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"};static kvm_t *kd;/* 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;/* these are for calculating cpu state percentages */static u_long cp_old[CPUSTATES];static u_long cp_diff[CPUSTATES];/* these are for detailing the process states */int process_states[7];char *procstatenames[] = {    "", " starting, ", " running, ", " sleeping, ",    " stopped, ", " zombie, ",     NULL};/* these are for detailing the cpu states */int cpu_states[6];char *cpustatenames[] = {    "user", "nice", "system", "interrupt", "idle", NULL};/* these are for detailing the memory statistics */int memory_stats[8];char *memorynames[] = {    "Real: ", "K/", "K ", "Virt: ", "K/",    "K ", "Free: ", "K", NULL};/* these are for keeping track of the proc array */static int nproc;static int onproc = -1;static int pref_len;static struct kinfo_proc *pbase;static struct kinfo_proc **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)intmachine_init(statics)struct statics *statics;{    register int i = 0;    register int pagesize;    if ((kd = kvm_open(VMUNIX, MEM, SWAP, O_RDONLY, "kvm_open")) == NULL)	return -1;    /* get the list of symbols we want to access in the kernel */    (void) kvm_nlist(kd, 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);    /* 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);}voidget_system_info(si)struct system_info *si;{    u_long total;    struct cpustats cpu;    struct loadavg  load;    /* get load averages */    {        size_t size = sizeof(load);        static int mib[] = { CTL_VM, VM_LOADAVG };        if (sysctl(mib, 2, &load, &size, NULL, 0) < 0) {	    (void) fprintf(stderr, "top: sysctl failed: %s\n", strerror(errno));	    bzero(&load, sizeof(load));        }    }    /* convert load averages to doubles */    {	register int i;	register double *infoloadp = si->load_avg;	for (i = 0; i < 3; i++)	    *infoloadp++ = ((double) load.ldavg[i]) / load.fscale;    }    /* get cp_time counts */    {        size_t size = sizeof(cpu);        static int mib[] = { CTL_KERN, KERN_CPUSTATS };        if (sysctl(mib, 2, &cpu, &size, NULL, 0) < 0) {	    (void) fprintf(stderr, "top: sysctl failed: %s\n", strerror(errno));	    bzero(&cpu, sizeof(cpu));        }    }    /* convert cp_time counts to percentages */    total = percentages(CPUSTATES, cpu_states, cpu.cp_time, cp_old, cp_diff);    /* sum memory statistics */    {	struct vmtotal total;	size_t size = sizeof(total);	static int mib[] = { CTL_VM, VM_TOTAL };	/* get total -- systemwide main memory usage structure */	if (sysctl(mib, 2, &total, &size, NULL, 0) < 0) {	    (void) fprintf(stderr, "top: sysctl failed: %s\n", strerror(errno));	    bzero(&total, sizeof(total));	}	/* 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);	memory_stats[6] = -1;	memory_stats[7] = pagetok(total.t_free);    }    /* set arrays and strings */    si->cpustates = cpu_states;    si->memory = memory_stats;    si->last_pid = -1;}static struct handle handle;

⌨️ 快捷键说明

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