2008-02-20 20:30:45 +00:00
|
|
|
/* Conky, a system monitor, based on torsmo
|
2005-07-20 00:30:40 +00:00
|
|
|
*
|
2007-08-10 19:53:44 +00:00
|
|
|
* Any original torsmo code is licensed under the BSD license
|
|
|
|
*
|
|
|
|
* All code written since the fork of torsmo is licensed under the GPL
|
|
|
|
*
|
|
|
|
* Please see COPYING for details
|
|
|
|
*
|
|
|
|
* Copyright (c) 2005 Adi Zaimi, Dan Piponi <dan@tanelorn.demon.co.uk>,
|
2008-02-20 20:30:45 +00:00
|
|
|
* Dave Clark <clarkd@skynet.ca>
|
2008-03-31 04:56:39 +00:00
|
|
|
* Copyright (c) 2005-2008 Brenden Matthews, Philip Kovacs, et. al.
|
2008-02-20 20:30:45 +00:00
|
|
|
* (see AUTHORS)
|
2007-08-10 19:53:44 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2008-02-20 20:30:45 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-07-20 00:30:40 +00:00
|
|
|
*
|
2008-02-20 20:30:45 +00:00
|
|
|
* $Id$ */
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
/* Ensure there's an operating system defined.
|
2005-07-20 00:30:40 +00:00
|
|
|
* compile with gcc -DOS ...
|
2008-02-20 20:30:45 +00:00
|
|
|
* There is *no* default because every OS has it's own way of revealing
|
|
|
|
* CPU/memory usage. */
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
/******************************************
|
|
|
|
* Includes *
|
|
|
|
******************************************/
|
2005-07-20 00:30:40 +00:00
|
|
|
|
|
|
|
#include "conky.h"
|
2008-02-20 20:30:45 +00:00
|
|
|
#define CPU_THRESHHOLD 0 /* threshhold for the cpu diff to appear */
|
2005-07-20 00:30:40 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
|
|
|
|
#include <regex.h>
|
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
/******************************************
|
|
|
|
* Defines *
|
|
|
|
******************************************/
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
/* XXX: I shouldn't really use this BUFFER_LEN variable but scanf is so lame
|
|
|
|
* and it'll take me a while to write a replacement. */
|
2005-07-20 00:30:40 +00:00
|
|
|
#define BUFFER_LEN 1024
|
|
|
|
|
|
|
|
#define PROCFS_TEMPLATE "/proc/%d/stat"
|
|
|
|
#define PROCFS_TEMPLATE_MEM "/proc/%d/statm"
|
|
|
|
#define PROCFS_CMDLINE_TEMPLATE "/proc/%d/cmdline"
|
2008-02-20 20:30:45 +00:00
|
|
|
#define MAX_SP 10 // number of elements to sort
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
/******************************************
|
|
|
|
* Process class *
|
|
|
|
******************************************/
|
2005-07-20 00:30:40 +00:00
|
|
|
|
2005-11-10 01:20:19 +00:00
|
|
|
struct sorted_process {
|
|
|
|
struct sorted_process *greater;
|
2008-02-20 20:30:45 +00:00
|
|
|
struct sorted_process *less;
|
2005-11-10 01:20:19 +00:00
|
|
|
struct process *proc;
|
2008-02-20 20:30:45 +00:00
|
|
|
};
|
2005-11-10 01:20:19 +00:00
|
|
|
|
2008-02-20 20:30:45 +00:00
|
|
|
/* Pointer to head of process list */
|
2005-07-25 00:22:16 +00:00
|
|
|
void process_find_top(struct process **, struct process **);
|