Subversion Repositories shark

Compare Revisions

Regard whitespace Rev 6 → Rev 7

/shark/trunk/include/trace/trace.h
38,11 → 38,11
*/
 
/*
* CVS : $Id: trace.h,v 1.1.1.1 2002-03-29 14:12:51 pj Exp $
* CVS : $Id: trace.h,v 1.2 2002-10-21 10:17:26 pj Exp $
*
* File: $File$
* Revision: $Revision: 1.1.1.1 $
* Last update: $Date: 2002-03-29 14:12:51 $
* Revision: $Revision: 1.2 $
* Last update: $Date: 2002-10-21 10:17:26 $
*/
 
#ifndef __TRACE_TRACE_H
68,6 → 68,8
 
/* -- */
 
/* Register a "standard" tracer configuration; requires FAT16 filesystem
(see documentation) */
int TRC_init_phase1_standard(void);
int TRC_init_phase2_standard(void);
 
/shark/trunk/include/trace/qfixed.h
31,7 → 31,12
#define trc_fixed_def_filename(m,s) (m).filename=(s)
#define trc_fixed_def_size(m,s) (m).size=(s)
 
/* Fixed queue, FAT16 filesystem (see kernel/modules/trcfixed.c) */
int trc_register_fixed_queue(void);
 
/* Fixed queue, DOSFS filesystem (see kernel/modules/trcdfix.c)
Note: You MUST specify a valid filename... */
int trc_register_dosfs_fixed_queue(void);
 
#endif
 
/shark/trunk/include/trace/queues.h
38,11 → 38,11
*/
 
/*
* CVS : $Id: queues.h,v 1.1.1.1 2002-03-29 14:12:51 pj Exp $
* CVS : $Id: queues.h,v 1.2 2002-10-21 10:17:25 pj Exp $
*
* File: $File$
* Revision: $Revision: 1.1.1.1 $
* Last update: $Date: 2002-03-29 14:12:51 $
* Revision: $Revision: 1.2 $
* Last update: $Date: 2002-10-21 10:17:25 $
*/
 
#ifndef __TRACE_QUEUES_H
62,12 → 62,13
#include <trace/qdummy.h>
 
#define TRC_FIXED_QUEUE 1
#define TRC_DOSFS_FIXED_QUEUE 2
#include <trace/qfixed.h>
 
#define TRC_CIRCULAR_QUEUE 2
#define TRC_CIRCULAR_QUEUE 3
#include <trace/qcirc.h>
 
#define TRC_UDP_QUEUE 3
#define TRC_UDP_QUEUE 4
#include <trace/qudp.h>
 
#define TRC_QUEUETYPESNUMBER 4