2009-04-08 22:40:59 +04:00
|
|
|
#ifndef _TRACE_SYSCALL_H
|
|
|
|
#define _TRACE_SYSCALL_H
|
|
|
|
|
2009-08-11 00:52:31 +04:00
|
|
|
#include <linux/tracepoint.h>
|
2009-08-11 00:52:47 +04:00
|
|
|
#include <linux/unistd.h>
|
|
|
|
#include <linux/ftrace_event.h>
|
2009-08-11 00:52:31 +04:00
|
|
|
|
2009-04-08 22:40:59 +04:00
|
|
|
#include <asm/ptrace.h>
|
|
|
|
|
2009-08-11 00:52:31 +04:00
|
|
|
|
2009-04-08 22:40:59 +04:00
|
|
|
/*
|
|
|
|
* A syscall entry in the ftrace syscalls array.
|
|
|
|
*
|
|
|
|
* @name: name of the syscall
|
2009-12-01 11:23:47 +03:00
|
|
|
* @syscall_nr: number of the syscall
|
2009-04-08 22:40:59 +04:00
|
|
|
* @nb_args: number of parameters it takes
|
|
|
|
* @types: list of types as strings
|
|
|
|
* @args: list of args as strings (args[i] matches types[i])
|
2009-08-19 11:54:51 +04:00
|
|
|
* @enter_event: associated syscall_enter trace event
|
|
|
|
* @exit_event: associated syscall_exit trace event
|
2009-04-08 22:40:59 +04:00
|
|
|
*/
|
|
|
|
struct syscall_metadata {
|
|
|
|
const char *name;
|
2009-12-01 11:23:47 +03:00
|
|
|
int syscall_nr;
|
2009-04-08 22:40:59 +04:00
|
|
|
int nb_args;
|
|
|
|
const char **types;
|
|
|
|
const char **args;
|
2010-04-22 18:35:55 +04:00
|
|
|
struct list_head enter_fields;
|
2009-08-19 11:54:51 +04:00
|
|
|
|
|
|
|
struct ftrace_event_call *enter_event;
|
|
|
|
struct ftrace_event_call *exit_event;
|
2009-04-08 22:40:59 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _TRACE_SYSCALL_H */
|