mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-12-26 04:17:33 +00:00
fixed bug with process stuff being wrong on 64 bit machines
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@385 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
parent
9b2401b36e
commit
6cd662ef13
@ -1,5 +1,8 @@
|
|||||||
# $Id$
|
# $Id$
|
||||||
|
|
||||||
|
2005-11-09
|
||||||
|
* Cleaned up top code, bug fixes
|
||||||
|
|
||||||
2005-11-08
|
2005-11-08
|
||||||
* Fix bug# 1351686. Patch by boojit.
|
* Fix bug# 1351686. Patch by boojit.
|
||||||
* Fixed 1331576 (I think) with bad cpu usage reporting
|
* Fixed 1331576 (I think) with bad cpu usage reporting
|
||||||
|
13
src/top.c
13
src/top.c
@ -9,7 +9,7 @@
|
|||||||
#include "top.h"
|
#include "top.h"
|
||||||
|
|
||||||
static regex_t *exclusion_expression = 0;
|
static regex_t *exclusion_expression = 0;
|
||||||
static unsigned int g_time = 0;
|
static unsigned long g_time = 0;
|
||||||
static unsigned long previous_total = 0;
|
static unsigned long previous_total = 0;
|
||||||
static struct process *first_process = 0;
|
static struct process *first_process = 0;
|
||||||
|
|
||||||
@ -49,8 +49,8 @@ static struct process *new_process(int p)
|
|||||||
|
|
||||||
process->pid = p;
|
process->pid = p;
|
||||||
process->time_stamp = 0;
|
process->time_stamp = 0;
|
||||||
process->previous_user_time = INT_MAX;
|
process->previous_user_time = ULONG_MAX;
|
||||||
process->previous_kernel_time = INT_MAX;
|
process->previous_kernel_time = ULONG_MAX;
|
||||||
process->counted = 1;
|
process->counted = 1;
|
||||||
|
|
||||||
|
|
||||||
@ -399,7 +399,7 @@ int compare_mem(struct process *a, struct process *b) {
|
|||||||
* insert this process into the list in a sorted fashion,
|
* insert this process into the list in a sorted fashion,
|
||||||
* or destroy it if it doesn't fit on the list
|
* or destroy it if it doesn't fit on the list
|
||||||
*/
|
*/
|
||||||
int insert_sp_element(
|
int insert_sp_element(
|
||||||
struct sorted_process * sp_cur
|
struct sorted_process * sp_cur
|
||||||
, struct sorted_process ** p_sp_head
|
, struct sorted_process ** p_sp_head
|
||||||
, struct sorted_process ** p_sp_tail
|
, struct sorted_process ** p_sp_tail
|
||||||
@ -414,7 +414,7 @@ int insert_sp_element(
|
|||||||
*p_sp_head = sp_cur;
|
*p_sp_head = sp_cur;
|
||||||
*p_sp_tail = sp_cur;
|
*p_sp_tail = sp_cur;
|
||||||
return(1);
|
return(1);
|
||||||
}
|
}
|
||||||
for(sp_readthru=*p_sp_head, x=0; sp_readthru != NULL && x < max_elements; sp_readthru=sp_readthru->less, x++) {
|
for(sp_readthru=*p_sp_head, x=0; sp_readthru != NULL && x < max_elements; sp_readthru=sp_readthru->less, x++) {
|
||||||
if (compare_funct(sp_readthru->proc, sp_cur->proc) && !did_insert) {
|
if (compare_funct(sp_readthru->proc, sp_cur->proc) && !did_insert) {
|
||||||
/* sp_cur is bigger than sp_readthru so insert it before sp_readthru */
|
/* sp_cur is bigger than sp_readthru so insert it before sp_readthru */
|
||||||
@ -447,7 +447,7 @@ int insert_sp_element(
|
|||||||
free(sp_cur);
|
free(sp_cur);
|
||||||
}
|
}
|
||||||
return did_insert;
|
return did_insert;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* create a new sp_process structure
|
* create a new sp_process structure
|
||||||
@ -468,7 +468,6 @@ void sp_acopy(struct sorted_process *sp_head, struct process ** ar, int max_size
|
|||||||
|
|
||||||
struct sorted_process * sp_cur, * sp_tmp;
|
struct sorted_process * sp_cur, * sp_tmp;
|
||||||
int x;
|
int x;
|
||||||
|
|
||||||
sp_cur = sp_head;
|
sp_cur = sp_head;
|
||||||
for (x=0; x < max_size && sp_cur != NULL; x++) {
|
for (x=0; x < max_size && sp_cur != NULL; x++) {
|
||||||
ar[x] = sp_cur->proc;
|
ar[x] = sp_cur->proc;
|
||||||
|
Loading…
Reference in New Issue
Block a user