You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
347 B
16 lines
347 B
#ifndef __PERF_SESSION_H
|
|
#define __PERF_SESSION_H
|
|
|
|
#include "header.h"
|
|
|
|
struct perf_session {
|
|
struct perf_header header;
|
|
unsigned long size;
|
|
int fd;
|
|
char filename[0];
|
|
};
|
|
|
|
struct perf_session *perf_session__new(const char *filename, int mode, bool force);
|
|
void perf_session__delete(struct perf_session *self);
|
|
|
|
#endif /* __PERF_SESSION_H */
|
|
|