1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
/*
* Copyright (C) 2000 Karim Yaghmour <karym@opersys.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
/*****************************************************************
* File : rtai_tracer.c
* Description :
* Contains the code for the RTAI tracing driver.
* Author :
* karym@opersys.com
* Date :
* 16/05/00, Initial typing.
* Note :
*****************************************************************/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <rtai_trace.h>
MODULE_LICENSE("GPL");
/* Local variables */
static int rt_tracer_registered = 0; /* Is there a tracer registered */
tracer_call rt_tracer = NULL; /* The registered tracer */
/****************************************************
* Function: rt_register_tracer()
* Description:
* Register the tracer to RTAI
* Return values :
* 0, all is OK
* -1, tracer already registered
****************************************************/
int rt_register_tracer(tracer_call pmTraceFunction)
{
/* Is there a tracer already registered */
if(rt_tracer_registered == 1)
return -1;
/* Set the tracer to the one being passed by the caller */
rt_tracer = pmTraceFunction;
/* Remember that a tracer is now registered */
rt_tracer_registered = 1;
/* Tell the caller that everything went fine */
return 0;
}
/***************************************************
* Function: rt_unregister_tracer()
* Description:
* Unregister the currently registered tracer.
* Return values :
* 0, all is OK
* -ENOMEDIUM, there isn't a registered tracer
* -ENXIO, unregestering wrong tracer
***************************************************/
int rt_unregister_tracer(tracer_call pmTraceFunction)
{
/* Is there a tracer already registered */
if(rt_tracer_registered == 0)
/* Nothing to unregister */
return -ENOMEDIUM;
/* Is it the tracer that was registered */
if(rt_tracer == pmTraceFunction)
/* There isn't any tracer in here */
rt_tracer_registered = 0;
else
return -ENXIO;
/* Reset tracer function */
rt_tracer = NULL;
/* Reset the registered flag */
rt_tracer_registered = 0;
/* Tell the caller that everything went OK */
return 0;
}
/*******************************************************
* Function: rt_trace_event()
* Description:
* Trace an event
* Parameters :
* pmEventID, the event's ID (check out rtai_trace.h)
* pmEventStruct, the structure describing the event
* Return values :
* 0, all is OK
* -ENOMEDIUM, there isn't a registered tracer
* -EBUSY, tracing hasn't started yet
*******************************************************/
int rt_trace_event(uint8_t pmEventID,
void* pmEventStruct)
{
/* Is there a tracer registered */
if(rt_tracer_registered != 1)
return -ENOMEDIUM;
/* Call the tracer */
return (rt_tracer(pmEventID, pmEventStruct));
}
/*******************************************************
* Function: __rtai_trace_init()
* Description:
* Initializes the RTAI trace module
* Parameters :
* NONE
* Return values :
* 0, all is OK
*******************************************************/
int __rtai_trace_init(void)
{
return 0;
}
/*******************************************************
* Function: __rtai_trace_exit()
* Description:
* Cleans-up the RTAI trace module
* Parameters :
* NONE
* Return values :
* NONE
*******************************************************/
void __rtai_trace_exit(void)
{
}
module_init(__rtai_trace_init);
module_exit(__rtai_trace_exit);
|