Subversion Repositories shark

Rev

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

Rev Author Line No. Line
1295 giacomo 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
 *   Giacomo Guidi       <giacomo@gandalf.sssup.it>
10
 *
11
 * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
12
 *
13
 * http://www.sssup.it
14
 * http://retis.sssup.it
15
 * http://shark.sssup.it
16
 */
17
 
18
/*
19
 * Copyright (C) 2000 Paolo Gai
20
 *
21
 * This program is free software; you can redistribute it and/or modify
22
 * it under the terms of the GNU General Public License as published by
23
 * the Free Software Foundation; either version 2 of the License, or
24
 * (at your option) any later version.
25
 *
26
 * This program is distributed in the hope that it will be useful,
27
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
28
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29
 * GNU General Public License for more details.
30
 *
31
 * You should have received a copy of the GNU General Public License
32
 * along with this program; if not, write to the Free Software
33
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
34
 */
35
 
36
#include <kernel/kern.h>
37
#include <tracer.h>
38
 
39
int main(int argc, char **argv)
40
{
41
 
42
  long long i;
43
 
44
  struct timespec start,end,diff;
45
 
1341 giacomo 46
  FTrace_chunk_create(3, 1000000, 1000000, FTRACE_CHUNK_FLAG_FREE | FTRACE_CHUNK_FLAG_CYC);
47
  FTrace_set_chunk_flags(1, FTRACE_CHUNK_FLAG_FREE | FTRACE_CHUNK_FLAG_JTN);
48
  FTrace_chunk_link(0,1,FTRACE_OSD_NEXT1);
49
  FTrace_chunk_link(0,2,FTRACE_OSD_NEXT2);
50
  FTrace_actual_chunk_select(0);
1295 giacomo 51
 
52
  kern_gettime(&start);
1341 giacomo 53
  FTrace_enable();
1295 giacomo 54
 
55
  for (i=0;i<1000000000;i++);
1341 giacomo 56
 
57
  TRACER_LOGEVENT(FTrace_EVT_next_chunk,0,0);
1295 giacomo 58
 
1341 giacomo 59
  for (i=0;i<1000000000;i++);
60
 
61
  FTrace_disable();
1295 giacomo 62
  kern_gettime(&end);
63
 
64
  SUBTIMESPEC(&end,&start,&diff);
65
 
66
  cprintf("Logged Time %d s %d us\n",(int)diff.tv_sec,(int)diff.tv_nsec/1000);
67
 
1341 giacomo 68
  FTrace_OSD_dump();
69
  FTrace_chunk_dump(0);
1295 giacomo 70
 
71
  return 0;
72
 
73
}