summaryrefslogtreecommitdiff
path: root/drivers/gator/daemon/Collector.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gator/daemon/Collector.h')
-rw-r--r--drivers/gator/daemon/Collector.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/drivers/gator/daemon/Collector.h b/drivers/gator/daemon/Collector.h
deleted file mode 100644
index 6c80725ad94..00000000000
--- a/drivers/gator/daemon/Collector.h
+++ /dev/null
@@ -1,39 +0,0 @@
-/**
- * Copyright (C) ARM Limited 2010-2012. 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 version 2 as
- * published by the Free Software Foundation.
- */
-
-#ifndef __COLLECTOR_H__
-#define __COLLECTOR_H__
-
-#include <stdio.h>
-
-class Collector {
-public:
- Collector();
- ~Collector();
- void start();
- void stop();
- int collect(char* buffer);
- void enablePerfCounters();
- void setupPerfCounters();
- int getBufferSize() {return bufferSize;}
-private:
- int bufferSize;
- int bufferFD;
- char * buffer;
-
- void checkVersion();
- void getCoreName();
-
- char* resolvePath(const char* file);
- int readIntDriver(const char* path, int* value);
- int writeDriver(const char* path, int value);
- int writeDriver(const char* path, const char* data);
- int writeReadDriver(const char* path, int* value);
-};
-
-#endif //__COLLECTOR_H__