From 6486229308cf7acc7a4ba7dd5f755cdb969372ef Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Tue, 24 Aug 2010 23:20:38 +0000 Subject: add support for steal/guest CPU time measurement simplify processor data accounting (add CPUData structure) remove Process_clone trick --- Process.c | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'Process.c') diff --git a/Process.c b/Process.c index 6389f741..0fb175ea 100644 --- a/Process.c +++ b/Process.c @@ -471,27 +471,6 @@ Process* Process_new(struct ProcessList_ *pl) { return this; } -Process* Process_clone(Process* this) { - Process* copy = malloc(sizeof(Process)); - #if HAVE_TASKSTATS - this->io_rchar = 0; - this->io_wchar = 0; - this->io_syscr = 0; - this->io_syscw = 0; - this->io_read_bytes = 0; - this->io_rate_read_bps = 0; - this->io_rate_read_time = 0; - this->io_write_bytes = 0; - this->io_rate_write_bps = 0; - this->io_rate_write_time = 0; - this->io_cancelled_write_bytes = 0; - #endif - memcpy(copy, this, sizeof(Process)); - this->comm = NULL; - this->pid = 0; - return copy; -} - void Process_toggleTag(Process* this) { this->tag = this->tag == true ? false : true; } -- cgit v1.2.3