Subversion Repositories shark

Rev

Rev 3 | Rev 80 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 pj 1
/*
2
 * Project: S.Ha.R.K.
3
 *
4
 * Coordinators:
5
 *   Giorgio Buttazzo    <giorgio@sssup.it>
6
 *   Paolo Gai           <pj@gandalf.sssup.it>
7
 *
8
 * Authors     :
9
 *   Paolo Gai           <pj@gandalf.sssup.it>
10
 *   Massimiliano Giorgi <massy@gandalf.sssup.it>
11
 *   Luca Abeni          <luca@gandalf.sssup.it>
12
 *   (see the web pages for full authors list)
13
 *
14
 * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
15
 *
16
 * http://www.sssup.it
17
 * http://retis.sssup.it
18
 * http://shark.sssup.it
19
 */
20
 
21
#ifndef __TRACE_QFIXED_H
22
#define __TRACE_QFIXED_H
23
 
24
typedef struct TAGtrc_fixed_queue_args_t {
25
  char *filename;
26
  int size;
27
} TRC_FIXED_PARMS;
28
 
29
#define trc_fixed_default_parms(m)  (m).filename=NULL,\
30
                                    (m).size=8192
31
#define trc_fixed_def_filename(m,s) (m).filename=(s)
32
#define trc_fixed_def_size(m,s)     (m).size=(s)
33
 
7 pj 34
/* Fixed queue, FAT16 filesystem (see kernel/modules/trcfixed.c) */
2 pj 35
int trc_register_fixed_queue(void);
36
 
7 pj 37
/* Fixed queue, DOSFS filesystem (see kernel/modules/trcdfix.c)
38
   Note: You MUST specify a valid filename... */
39
int trc_register_dosfs_fixed_queue(void);
40
 
2 pj 41
#endif
42