2005-04-17 00:20:36 +02: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 14:47:33 +02:00
|
|
|
#include <asm/mutex.h>
|
2005-04-17 00:20:36 +02: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 21:39:53 +02:00
|
|
|
|
2005-06-24 07:02:47 +02:00
|
|
|
#define INVALID_COOKIE ~0UL
|
|
|
|
#define NO_COOKIE 0UL
|
|
|
|
|
2007-02-12 09:55:34 +01:00
|
|
|
extern const struct file_operations event_buffer_fops;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* mutex between sync_cpu_buffers() and the
|
|
|
|
* file reading code.
|
|
|
|
*/
|
2006-06-25 14:47:33 +02:00
|
|
|
extern struct mutex buffer_mutex;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#endif /* EVENT_BUFFER_H */
|