oprof.h 991 字节
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;
L
Linus Torvalds 已提交
27 28
extern struct oprofile_operations oprofile_ops;
extern unsigned long oprofile_started;
29
extern unsigned long oprofile_backtrace_depth;
30
extern unsigned long timeout_jiffies;
31

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

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

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

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