From d95aa67a0a7fab36f1d06a19b2e36fa2b35a86a9 Mon Sep 17 00:00:00 2001 From: Hans Leidekker Date: Sat, 21 Jul 2007 15:07:35 +0200 Subject: [PATCH] pdh: Add a stub processor time counter. --- dlls/pdh/pdh_main.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/dlls/pdh/pdh_main.c b/dlls/pdh/pdh_main.c index 238bf166219..0c5a70e06bb 100644 --- a/dlls/pdh/pdh_main.c +++ b/dlls/pdh/pdh_main.c @@ -152,21 +152,35 @@ struct source LONGLONG base; /* samples per second */ }; +static const WCHAR path_processor_time[] = + {'\\','P','r','o','c','e','s','s','o','r','(','_','T','o','t','a','l',')', + '\\','%',' ','P','r','o','c','e','s','s','o','r',' ','T','i','m','e',0}; static const WCHAR path_uptime[] = {'\\','S','y','s','t','e','m', '\\', 'S','y','s','t','e','m',' ','U','p',' ','T','i','m','e',0}; +static void CALLBACK collect_processor_time( struct counter *counter ) +{ + counter->two.largevalue = 500000; /* FIXME */ + counter->status = PDH_CSTATUS_VALID_DATA; +} + static void CALLBACK collect_uptime( struct counter *counter ) { counter->two.largevalue = GetTickCount64(); counter->status = PDH_CSTATUS_VALID_DATA; } +#define TYPE_PROCESSOR_TIME \ + (PERF_SIZE_LARGE | PERF_TYPE_COUNTER | PERF_COUNTER_RATE | PERF_TIMER_100NS | PERF_DELTA_COUNTER | \ + PERF_INVERSE_COUNTER | PERF_DISPLAY_PERCENT) + #define TYPE_UPTIME \ (PERF_SIZE_LARGE | PERF_TYPE_COUNTER | PERF_COUNTER_ELAPSED | PERF_OBJECT_TIMER | PERF_DISPLAY_SECONDS) /* counter source registry */ static const struct source counter_sources[] = { + { path_processor_time, collect_processor_time, TYPE_PROCESSOR_TIME, -5, 10000000 }, { path_uptime, collect_uptime, TYPE_UPTIME, -3, 1000 } };