drm/ttm: Clean usage of ttm_io_prot() with TTM_PL_FLAG_CACHED
[linux/fpc-iii.git] / tools / perf / perf.h
blob510c65f72858fb09fcdad8a5c21ba7bb732747d6
1 #ifndef _PERF_PERF_H
2 #define _PERF_PERF_H
4 #include <time.h>
5 #include <stdbool.h>
6 #include <linux/types.h>
7 #include <linux/perf_event.h>
9 extern bool test_attr__enabled;
10 void test_attr__init(void);
11 void test_attr__open(struct perf_event_attr *attr, pid_t pid, int cpu,
12 int fd, int group_fd, unsigned long flags);
14 #define HAVE_ATTR_TEST
15 #include "perf-sys.h"
17 #ifndef NSEC_PER_SEC
18 # define NSEC_PER_SEC 1000000000ULL
19 #endif
20 #ifndef NSEC_PER_USEC
21 # define NSEC_PER_USEC 1000ULL
22 #endif
24 static inline unsigned long long rdclock(void)
26 struct timespec ts;
28 clock_gettime(CLOCK_MONOTONIC, &ts);
29 return ts.tv_sec * 1000000000ULL + ts.tv_nsec;
32 #define MAX_NR_CPUS 256
34 extern const char *input_name;
35 extern bool perf_host, perf_guest;
36 extern const char perf_version_string[];
38 void pthread__unblock_sigwinch(void);
40 #include "util/target.h"
42 struct record_opts {
43 struct target target;
44 int call_graph;
45 bool call_graph_enabled;
46 bool group;
47 bool inherit_stat;
48 bool no_buffering;
49 bool no_inherit;
50 bool no_inherit_set;
51 bool no_samples;
52 bool raw_samples;
53 bool sample_address;
54 bool sample_weight;
55 bool sample_time;
56 bool period;
57 unsigned int freq;
58 unsigned int mmap_pages;
59 unsigned int user_freq;
60 u64 branch_stack;
61 u64 default_interval;
62 u64 user_interval;
63 u16 stack_dump_size;
64 bool sample_transaction;
65 unsigned initial_delay;
68 #endif