2005-04-16 22:20:36 +00:00
|
|
|
/**
|
|
|
|
* @file event_buffer.h
|
|
|
|
*
|
|
|
|
* @remark Copyright 2002 OProfile authors
|
|
|
|
* @remark Read the file COPYING
|
|
|
|
*
|
|
|
|
* @author John Levon <levon@movementarian.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef EVENT_BUFFER_H
|
|
|
|
#define EVENT_BUFFER_H
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
2006-06-25 12:47:33 +00:00
|
|
|
#include <asm/mutex.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
int alloc_event_buffer(void);
|
|
|
|
|
|
|
|
void free_event_buffer(void);
|
|
|
|
|
|
|
|
/* wake up the process sleeping on the event file */
|
|
|
|
void wake_up_buffer_waiter(void);
|
2007-07-20 19:39:53 +00:00
|
|
|
|
2005-06-24 05:02:47 +00:00
|
|
|
#define INVALID_COOKIE ~0UL
|
|
|
|
#define NO_COOKIE 0UL
|
|
|
|
|
2007-02-12 08:55:34 +00:00
|
|
|
extern const struct file_operations event_buffer_fops;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* mutex between sync_cpu_buffers() and the
|
|
|
|
* file reading code.
|
|
|
|
*/
|
2006-06-25 12:47:33 +00:00
|
|
|
extern struct mutex buffer_mutex;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#endif /* EVENT_BUFFER_H */
|