diff options
author | Kyle McMartin <kyle@mcmartin.ca> | 2009-06-23 21:38:49 -0400 |
---|---|---|
committer | Kyle McMartin <kyle@mcmartin.ca> | 2009-07-02 23:34:12 -0400 |
commit | 2d4618dce6a318ff4ec78dfe492cc3793015d540 (patch) | |
tree | b262252b97743a6ff4e1011d7069cc9097d3dba3 /tools/perf/perf.h | |
parent | abf1e11a0dcf5514139cb76ed8eb050107653abd (diff) |
parisc: perf: wire up sys_perf_counter_open
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
Diffstat (limited to 'tools/perf/perf.h')
-rw-r--r-- | tools/perf/perf.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/perf/perf.h b/tools/perf/perf.h index ceb68aa51f7f..188801b4ebc6 100644 --- a/tools/perf/perf.h +++ b/tools/perf/perf.h | |||
@@ -19,6 +19,12 @@ | |||
19 | #define cpu_relax() asm volatile("" ::: "memory"); | 19 | #define cpu_relax() asm volatile("" ::: "memory"); |
20 | #endif | 20 | #endif |
21 | 21 | ||
22 | #ifdef __hppa__ | ||
23 | #include "../../arch/parisc/include/asm/unistd.h" | ||
24 | #define rmb() asm volatile("" ::: "memory") | ||
25 | #define cpu_relax() asm volatile("" ::: "memory"); | ||
26 | #endif | ||
27 | |||
22 | #include <time.h> | 28 | #include <time.h> |
23 | #include <unistd.h> | 29 | #include <unistd.h> |
24 | #include <sys/types.h> | 30 | #include <sys/types.h> |