~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to include/trace/ipc.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef _TRACE_IPC_H
2
 
#define _TRACE_IPC_H
3
 
 
4
 
#include <linux/tracepoint.h>
5
 
 
6
 
DECLARE_TRACE(ipc_msg_create,
7
 
        TP_PROTO(long id, int flags),
8
 
        TP_ARGS(id, flags));
9
 
DECLARE_TRACE(ipc_sem_create,
10
 
        TP_PROTO(long id, int flags),
11
 
        TP_ARGS(id, flags));
12
 
DECLARE_TRACE(ipc_shm_create,
13
 
        TP_PROTO(long id, int flags),
14
 
        TP_ARGS(id, flags));
15
 
DECLARE_TRACE(ipc_call,
16
 
        TP_PROTO(unsigned int call, unsigned int first),
17
 
        TP_ARGS(call, first));
18
 
#endif