Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 79 → Rev 80

/shark/trunk/include/trace/qudp.h
23,7 → 23,10
 
#include <kernel/model.h>
#include <drivers/udpip.h>
#include "ll/sys/cdefs.h"
 
__BEGIN_DECLS
 
typedef struct TAGtrc_udp_queue_args_t {
int size;
UDP_ADDR local,remote;
43,4 → 46,5
 
int trc_register_udp_queue(void);
 
__END_DECLS
#endif
/shark/trunk/include/trace/qdummy.h
21,6 → 21,11
#ifndef __TRACE_QDUMMY_H
#define __TRACE_QDUMMY_H
 
#include "ll/sys/cdefs.h"
 
__BEGIN_DECLS
 
int trc_register_dummy_queue(void);
 
__END_DECLS
#endif
/shark/trunk/include/trace/trace.h
38,16 → 38,20
*/
 
/*
* CVS : $Id: trace.h,v 1.2 2002-10-21 10:17:26 pj Exp $
* CVS : $Id: trace.h,v 1.3 2003-03-13 13:37:02 pj Exp $
*
* File: $File$
* Revision: $Revision: 1.2 $
* Last update: $Date: 2002-10-21 10:17:26 $
* Revision: $Revision: 1.3 $
* Last update: $Date: 2003-03-13 13:37:02 $
*/
 
#ifndef __TRACE_TRACE_H
#define __TRACE_TRACE_H
 
#include "ll/sys/cdefs.h"
 
__BEGIN_DECLS
 
typedef struct trc_parms {
char *path;
} TRC_PARMS;
73,4 → 77,5
int TRC_init_phase1_standard(void);
int TRC_init_phase2_standard(void);
 
__END_DECLS
#endif
/shark/trunk/include/trace/qfixed.h
21,6 → 21,10
#ifndef __TRACE_QFIXED_H
#define __TRACE_QFIXED_H
 
#include "ll/sys/cdefs.h"
 
__BEGIN_DECLS
 
typedef struct TAGtrc_fixed_queue_args_t {
char *filename;
int size;
38,5 → 42,6
Note: You MUST specify a valid filename... */
int trc_register_dosfs_fixed_queue(void);
 
__END_DECLS
#endif
 
/shark/trunk/include/trace/qcirc.h
21,6 → 21,10
#ifndef __TRACE_QCIRC_H
#define __TRACE_QCIRC_H
 
#include "ll/sys/cdefs.h"
 
__BEGIN_DECLS
 
typedef struct TAGtrc_circular_queue_args_t {
char *filename;
int size;
47,4 → 51,5
int trc_register_circular_queue(void);
 
__END_DECLS
#endif
/shark/trunk/include/trace/queues.h
38,11 → 38,11
*/
 
/*
* CVS : $Id: queues.h,v 1.3 2002-10-28 07:53:40 pj Exp $
* CVS : $Id: queues.h,v 1.4 2003-03-13 13:37:02 pj Exp $
*
* File: $File$
* Revision: $Revision: 1.3 $
* Last update: $Date: 2002-10-28 07:53:40 $
* Revision: $Revision: 1.4 $
* Last update: $Date: 2003-03-13 13:37:02 $
*/
 
#ifndef __TRACE_QUEUES_H
50,7 → 50,10
 
#include <ll/sys/types.h>
#include <trace/types.h>
#include "ll/sys/cdefs.h"
 
__BEGIN_DECLS
 
typedef struct TAGtrc_queue_t {
int type;
trc_event_t *(*get)(void *);
85,4 → 88,5
 
int trc_create_queue(int queuetype, void *arg);
 
__END_DECLS
#endif