Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1319 → Rev 1318

/demos/trunk/newtrace/dumper/dumper
File deleted
\ No newline at end of file
Property changes:
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Index: dumper/dumper.c
===================================================================
--- dumper/dumper.c (revision 1319)
+++ dumper/dumper.c (nonexistent)
@@ -1,88 +0,0 @@
-#include <tracer.h>
-
-#include <kernel/kern.h>
-#include <unistd.h>
-
-
-TASK finish_task() {
-
- #ifdef __NEW_TRACER__
-
- extern __volatile__ unsigned int TracerEventsPresent;
- unsigned int k;
-
- SYS_FLAGS f;
-
- sleep(1);
-
- tracer_init_udp(1,"192.168.118.4","192.168.118.2");
-
- tracer_create_udp_task(NULL,80);
-
- f = kern_fsave();
- k = TracerEventsPresent;
- kern_frestore(f);
- while(k > 0) {
- f = kern_fsave();
- printf_xy(0,5,WHITE,"REM = %08d",k);
- k = TracerEventsPresent;
- kern_frestore(f);
- }
-
- tracer_flush_sent_events();
-
- #endif
-
- sys_end();
-
- return NULL;
-
-}
-
-extern void *StartTracerBuffer; // Buffer Start 0
-extern void *EndTracerBuffer; // Buffer End 4
-extern void *LastBeforeEndTracerBuffer; //8
-extern void *CurrentTracerBuffer; //The Actual Write Point For The Next Event 12
-extern void *FirstTracerBuffer; //The First Valid Event 16
-
-
-extern int TracerActive; //20
-extern int TracerOutputType; //24
-extern unsigned long long TracerEventsRecorded; //28
-extern unsigned int TracerEventsPresent; //36
-
-int main() {
-
- NRT_TASK_MODEL nrt;
-
- void *save_tracer_pointer = (void *)(2324422UL);
-
- #ifdef __NEW_TRACER__
-
- StartTracerBuffer = *(void **)(save_tracer_pointer); // Buffer Start 0
- EndTracerBuffer = *(void **)(save_tracer_pointer+4); // Buffer End 4
- LastBeforeEndTracerBuffer = *(void **)(save_tracer_pointer+8); //8
- CurrentTracerBuffer = *(void **)(save_tracer_pointer+12); //The Actual Write Point For The Next Event 12
- FirstTracerBuffer = *(void **)(save_tracer_pointer+16); //The First Valid Event 16
-
- TracerActive = 0;
-
- TracerEventsRecorded = *(unsigned long long *)(save_tracer_pointer+28); //28
- TracerEventsPresent = *(unsigned int *)(save_tracer_pointer+36); //36
-
- cprintf("Total Events Present %d\n",TracerEventsPresent);
-
- nrt_task_default_model(nrt);
-
- task_activate(task_create("Finish",finish_task,&nrt,NULL));
-
- #else
-
- sys_end();
-
- #endif
-
- return 0;
-
-}
-
Index: dumper/makefile
===================================================================
--- dumper/makefile (revision 1319)
+++ dumper/makefile (nonexistent)
@@ -1,18 +0,0 @@
-#
-#
-#
-
-ifndef BASE
-BASE=../../..
-endif
-include $(BASE)/config/config.mk
-
-PROGS= dumper
-
-include $(BASE)/config/example.mk
-
-OBJS= "initfile.o"
-
-dumper:
- make -f $(SUBMAKE) BASE=$(BASE) APP=dumper INIT= OTHEROBJS=$(OBJS) SHARKOPT="__OLDCHAR__"
-
Index: dumper/initfile.c
===================================================================
--- dumper/initfile.c (revision 1319)
+++ dumper/initfile.c (nonexistent)
@@ -1,79 +0,0 @@
-/*
- * Project: S.Ha.R.K.
- *
- * Coordinators:
- * Giorgio Buttazzo <giorgio@sssup.it>
- * Paolo Gai <pj@gandalf.sssup.it>
- *
- * Authors :
- * Giacomo Guidi <giacomo@gandalf.sssup.it>
- * (see the web pages for full authors list)
- *
- * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy)
- *
- * http://www.sssup.it
- * http://retis.sssup.it
- * http://shark.sssup.it
- */
-
-/*
- * Copyright (C) 2000 Paolo Gai
- *
- * 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
- *
- */
-
-#include "kernel/kern.h"
-#include "modules/edf.h"
-#include "modules/cbs.h"
-#include "modules/rr.h"
-#include "modules/sem.h"
-#include "modules/dummy.h"
-#include "modules/hartport.h"
-
-#include "modules/pi.h"
-
-#define TICK 0
-
-#define RRTICK 10000
-
-TIME __kernel_register_levels__(void *arg)
-{
- struct multiboot_info *mb = (struct multiboot_info *)arg;
-
- EDF_register_level(EDF_ENABLE_ALL);
- CBS_register_level(CBS_ENABLE_ALL,0);
- RR_register_level(RRTICK, RR_MAIN_YES, mb);
- dummy_register_level();
-
- SEM_register_module();
-
- PI_register_module();
-
- return TICK;
-
-}
-
-TASK __init__(void *arg)
-{
- struct multiboot_info *mb = (struct multiboot_info *)arg;
-
- HARTPORT_init();
-
- __call_main__(mb);
-
- return (void *)0;
-}
-