blob: 0a068580caf317ac2580b65bd06ed87535e609e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/**
* Copyright (C) ARM Limited 2015. 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 ATRACEDRIVER_H
#define ATRACEDRIVER_H
#include "mxml/mxml.h"
#include "Driver.h"
class AtraceDriver : public SimpleDriver {
public:
AtraceDriver();
~AtraceDriver();
void readEvents(mxml_node_t *const xml);
void start();
void stop();
bool isSupported() const { return mSupported; }
private:
void setAtrace(const int flags);
bool mSupported;
char mNotifyPath[256];
// Intentionally unimplemented
AtraceDriver(const AtraceDriver &);
AtraceDriver &operator=(const AtraceDriver &);
};
#endif // ATRACEDRIVER_H
|