|
@@ -9,12 +9,12 @@ enum perf_data_mode {
|
|
|
};
|
|
|
|
|
|
struct perf_data_file {
|
|
|
- const char *path;
|
|
|
- int fd;
|
|
|
- bool is_pipe;
|
|
|
- bool force;
|
|
|
- unsigned long size;
|
|
|
- enum perf_data_mode mode;
|
|
|
+ const char *path;
|
|
|
+ int fd;
|
|
|
+ bool is_pipe;
|
|
|
+ bool force;
|
|
|
+ unsigned long size;
|
|
|
+ enum perf_data_mode mode;
|
|
|
};
|
|
|
|
|
|
static inline bool perf_data_file__is_read(struct perf_data_file *file)
|
|
@@ -44,5 +44,7 @@ static inline unsigned long perf_data_file__size(struct perf_data_file *file)
|
|
|
|
|
|
int perf_data_file__open(struct perf_data_file *file);
|
|
|
void perf_data_file__close(struct perf_data_file *file);
|
|
|
+ssize_t perf_data_file__write(struct perf_data_file *file,
|
|
|
+ void *buf, size_t size);
|
|
|
|
|
|
#endif /* __PERF_DATA_H */
|