oprof.h 996 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/**
 * @file oprof.h
 *
 * @remark Copyright 2002 OProfile authors
 * @remark Read the file COPYING
 *
 * @author John Levon <levon@movementarian.org>
 */

#ifndef OPROF_H
#define OPROF_H

int oprofile_setup(void);
14
void oprofile_shutdown(void);
L
Linus Torvalds 已提交
15 16 17 18 19 20 21 22

int oprofilefs_register(void);
void oprofilefs_unregister(void);

int oprofile_start(void);
void oprofile_stop(void);

struct oprofile_operations;
23

24 25 26
extern unsigned long oprofile_buffer_size;
extern unsigned long oprofile_cpu_buffer_size;
extern unsigned long oprofile_buffer_watershed;
27 28
extern unsigned long oprofile_time_slice;

L
Linus Torvalds 已提交
29 30
extern struct oprofile_operations oprofile_ops;
extern unsigned long oprofile_started;
31
extern unsigned long oprofile_backtrace_depth;
32

L
Linus Torvalds 已提交
33 34 35
struct super_block;
struct dentry;

R
Robert Richter 已提交
36 37
void oprofile_create_files(struct super_block *sb, struct dentry *root);
void oprofile_timer_init(struct oprofile_operations *ops);
L
Linus Torvalds 已提交
38 39

int oprofile_set_backtrace(unsigned long depth);
40
int oprofile_set_timeout(unsigned long time);
41

L
Linus Torvalds 已提交
42
#endif /* OPROF_H */