00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include <stdio.h>
00023
00024 #include <aversive.h>
00025 #include <scheduler_config.h>
00026 #include <scheduler_private.h>
00027
00029 void
00030 dump_events(void)
00031 {
00032 int i;
00033
00034 printf("== Dump events ==\n");
00035 for (i=0 ; i<SCHEDULER_NB_MAX_EVENT ; i++) {
00036 printf(" [%d]@%p : ", i, &g_tab_event[i]);
00037 printf(" state=%d", g_tab_event[i].state);
00038 if (g_tab_event[i].state >= SCHEDULER_EVENT_ACTIVE ) {
00039 printf(", ");
00040 printf("f=%p, ", g_tab_event[i].f);
00041 printf("data=%p, ", g_tab_event[i].data);
00042 printf("period=%d, ", g_tab_event[i].period);
00043 printf("current_time=%d, ", g_tab_event[i].current_time);
00044 printf("priority=%d, ", g_tab_event[i].priority);
00045 printf("list_next=%p\n", SLIST_NEXT(&g_tab_event[i], next));
00046 }
00047 else {
00048 printf("\n");
00049 }
00050 }
00051 }
00052
00053