Changeset 5beb562 in rtems
- Timestamp:
- 09/21/97 16:58:57 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 8cd3748
- Parents:
- f37e656d
- Files:
-
- 53 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libmisc/monitor/Makefile.in
rf37e656d r5beb562 55 55 56 56 preinstall: $(INSTALLED_H_FILES) 57 $(INSTALL) -m 444 ${INSTALLED_H_FILES} ${PROJECT_RELEASE}/include 57 $(INSTALL) -m 444 ${INSTALLED_H_FILES} ${PROJECT_RELEASE}/include/rtems -
c/src/lib/libmisc/monitor/mon-command.c
rf37e656d r5beb562 9 9 #include <rtems.h> 10 10 11 #include "monitor.h"11 #include <rtems/monitor.h> 12 12 13 13 #include <stdio.h> -
c/src/lib/libmisc/monitor/mon-config.c
rf37e656d r5beb562 10 10 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ 11 11 #include <rtems.h> 12 #include "monitor.h"12 #include <rtems/monitor.h> 13 13 14 14 #include <stdio.h> -
c/src/lib/libmisc/monitor/mon-dname.c
rf37e656d r5beb562 23 23 #include <rtems.h> 24 24 25 #include "monitor.h"25 #include <rtems/monitor.h> 26 26 27 27 #include <stdio.h> -
c/src/lib/libmisc/monitor/mon-driver.c
rf37e656d r5beb562 23 23 #include <rtems.h> 24 24 25 #include "monitor.h"25 #include <rtems/monitor.h> 26 26 27 27 #include <stdio.h> -
c/src/lib/libmisc/monitor/mon-extension.c
rf37e656d r5beb562 6 6 7 7 #include <rtems.h> 8 #include "monitor.h"8 #include <rtems/monitor.h> 9 9 10 10 #include <stdio.h> -
c/src/lib/libmisc/monitor/mon-itask.c
rf37e656d r5beb562 7 7 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ 8 8 #include <rtems.h> 9 #include "monitor.h"9 #include <rtems/monitor.h> 10 10 11 11 #include <stdio.h> -
c/src/lib/libmisc/monitor/mon-manager.c
rf37e656d r5beb562 7 7 8 8 #include <rtems.h> 9 #include "monitor.h"9 #include <rtems/monitor.h> 10 10 11 11 #include <stdio.h> 12 13 #include <monitor.h>14 12 15 13 /* -
c/src/lib/libmisc/monitor/mon-monitor.c
rf37e656d r5beb562 30 30 #include <unistd.h> 31 31 32 #include "monitor.h"32 #include <rtems/monitor.h> 33 33 34 34 /* set by trap handler */ -
c/src/lib/libmisc/monitor/mon-mpci.c
rf37e656d r5beb562 10 10 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ 11 11 #include <rtems.h> 12 #include "monitor.h"12 #include <rtems/monitor.h> 13 13 14 14 #include <stdio.h> -
c/src/lib/libmisc/monitor/mon-object.c
rf37e656d r5beb562 18 18 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ 19 19 #include <rtems.h> 20 #include "monitor.h"20 #include <rtems/monitor.h> 21 21 22 22 #include <stdio.h> 23 23 #include <stdlib.h> /* strtoul() */ 24 24 #include <string.h> /* memcpy() */ 25 26 #include <monitor.h>27 25 28 26 #define NUMELEMS(arr) (sizeof(arr) / sizeof(arr[0])) -
c/src/lib/libmisc/monitor/mon-prmisc.c
rf37e656d r5beb562 9 9 10 10 #include <rtems.h> 11 #include "monitor.h"11 #include <rtems/monitor.h> 12 12 13 13 #include <rtems/assoc.h> -
c/src/lib/libmisc/monitor/mon-queue.c
rf37e656d r5beb562 4 4 5 5 #include <rtems.h> 6 #include "monitor.h"6 #include <rtems/monitor.h> 7 7 8 8 #include <stdio.h> -
c/src/lib/libmisc/monitor/mon-server.c
rf37e656d r5beb562 13 13 #include <unistd.h> 14 14 15 #include "monitor.h"15 #include <rtems/monitor.h> 16 16 17 17 /* -
c/src/lib/libmisc/monitor/mon-symbols.c
rf37e656d r5beb562 18 18 #include <string.h> 19 19 20 #include "monitor.h"21 #include "symbols.h"20 #include <rtems/monitor.h> 21 #include <rtems/symbols.h> 22 22 23 23 -
c/src/lib/libmisc/monitor/mon-task.c
rf37e656d r5beb562 6 6 7 7 #include <rtems.h> 8 #include "monitor.h"8 #include <rtems/monitor.h> 9 9 10 10 #include <stdio.h> -
c/src/lib/libmisc/monitor/monitor.h
rf37e656d r5beb562 13 13 #define __MONITOR_H 14 14 15 #include "symbols.h"15 #include <rtems/symbols.h> 16 16 #include <rtems/error.h> /* rtems_error() */ 17 17 -
c/src/lib/libmisc/monitor/symbols.h
rf37e656d r5beb562 32 32 typedef struct { 33 33 34 rtems_unsigned32 sorted; /* are symbols sorted right now? */ 35 36 rtems_unsigned32 growth_factor; /* % to grow by when needed */ 37 38 rtems_unsigned32 next; /* next symbol slot to use when adding */ 39 rtems_unsigned32 size; /* max # of symbols */ 34 rtems_unsigned32 sorted; /* are symbols sorted right now? */ 35 rtems_unsigned32 growth_factor; /* % to grow by when needed */ 36 rtems_unsigned32 next; /* next symbol slot to use when adding */ 37 rtems_unsigned32 size; /* max # of symbols */ 40 38 41 39 /* -
c/src/libmisc/monitor/Makefile.in
rf37e656d r5beb562 55 55 56 56 preinstall: $(INSTALLED_H_FILES) 57 $(INSTALL) -m 444 ${INSTALLED_H_FILES} ${PROJECT_RELEASE}/include 57 $(INSTALL) -m 444 ${INSTALLED_H_FILES} ${PROJECT_RELEASE}/include/rtems -
c/src/libmisc/monitor/mon-command.c
rf37e656d r5beb562 9 9 #include <rtems.h> 10 10 11 #include "monitor.h"11 #include <rtems/monitor.h> 12 12 13 13 #include <stdio.h> -
c/src/libmisc/monitor/mon-config.c
rf37e656d r5beb562 10 10 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ 11 11 #include <rtems.h> 12 #include "monitor.h"12 #include <rtems/monitor.h> 13 13 14 14 #include <stdio.h> -
c/src/libmisc/monitor/mon-dname.c
rf37e656d r5beb562 23 23 #include <rtems.h> 24 24 25 #include "monitor.h"25 #include <rtems/monitor.h> 26 26 27 27 #include <stdio.h> -
c/src/libmisc/monitor/mon-driver.c
rf37e656d r5beb562 23 23 #include <rtems.h> 24 24 25 #include "monitor.h"25 #include <rtems/monitor.h> 26 26 27 27 #include <stdio.h> -
c/src/libmisc/monitor/mon-extension.c
rf37e656d r5beb562 6 6 7 7 #include <rtems.h> 8 #include "monitor.h"8 #include <rtems/monitor.h> 9 9 10 10 #include <stdio.h> -
c/src/libmisc/monitor/mon-itask.c
rf37e656d r5beb562 7 7 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ 8 8 #include <rtems.h> 9 #include "monitor.h"9 #include <rtems/monitor.h> 10 10 11 11 #include <stdio.h> -
c/src/libmisc/monitor/mon-manager.c
rf37e656d r5beb562 7 7 8 8 #include <rtems.h> 9 #include "monitor.h"9 #include <rtems/monitor.h> 10 10 11 11 #include <stdio.h> 12 13 #include <monitor.h>14 12 15 13 /* -
c/src/libmisc/monitor/mon-monitor.c
rf37e656d r5beb562 30 30 #include <unistd.h> 31 31 32 #include "monitor.h"32 #include <rtems/monitor.h> 33 33 34 34 /* set by trap handler */ -
c/src/libmisc/monitor/mon-mpci.c
rf37e656d r5beb562 10 10 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ 11 11 #include <rtems.h> 12 #include "monitor.h"12 #include <rtems/monitor.h> 13 13 14 14 #include <stdio.h> -
c/src/libmisc/monitor/mon-object.c
rf37e656d r5beb562 18 18 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ 19 19 #include <rtems.h> 20 #include "monitor.h"20 #include <rtems/monitor.h> 21 21 22 22 #include <stdio.h> 23 23 #include <stdlib.h> /* strtoul() */ 24 24 #include <string.h> /* memcpy() */ 25 26 #include <monitor.h>27 25 28 26 #define NUMELEMS(arr) (sizeof(arr) / sizeof(arr[0])) -
c/src/libmisc/monitor/mon-prmisc.c
rf37e656d r5beb562 9 9 10 10 #include <rtems.h> 11 #include "monitor.h"11 #include <rtems/monitor.h> 12 12 13 13 #include <rtems/assoc.h> -
c/src/libmisc/monitor/mon-queue.c
rf37e656d r5beb562 4 4 5 5 #include <rtems.h> 6 #include "monitor.h"6 #include <rtems/monitor.h> 7 7 8 8 #include <stdio.h> -
c/src/libmisc/monitor/mon-server.c
rf37e656d r5beb562 13 13 #include <unistd.h> 14 14 15 #include "monitor.h"15 #include <rtems/monitor.h> 16 16 17 17 /* -
c/src/libmisc/monitor/mon-symbols.c
rf37e656d r5beb562 18 18 #include <string.h> 19 19 20 #include "monitor.h"21 #include "symbols.h"20 #include <rtems/monitor.h> 21 #include <rtems/symbols.h> 22 22 23 23 -
c/src/libmisc/monitor/mon-task.c
rf37e656d r5beb562 6 6 7 7 #include <rtems.h> 8 #include "monitor.h"8 #include <rtems/monitor.h> 9 9 10 10 #include <stdio.h> -
c/src/libmisc/monitor/monitor.h
rf37e656d r5beb562 13 13 #define __MONITOR_H 14 14 15 #include "symbols.h"15 #include <rtems/symbols.h> 16 16 #include <rtems/error.h> /* rtems_error() */ 17 17 -
c/src/libmisc/monitor/symbols.h
rf37e656d r5beb562 32 32 typedef struct { 33 33 34 rtems_unsigned32 sorted; /* are symbols sorted right now? */ 35 36 rtems_unsigned32 growth_factor; /* % to grow by when needed */ 37 38 rtems_unsigned32 next; /* next symbol slot to use when adding */ 39 rtems_unsigned32 size; /* max # of symbols */ 34 rtems_unsigned32 sorted; /* are symbols sorted right now? */ 35 rtems_unsigned32 growth_factor; /* % to grow by when needed */ 36 rtems_unsigned32 next; /* next symbol slot to use when adding */ 37 rtems_unsigned32 size; /* max # of symbols */ 40 38 41 39 /* -
cpukit/libmisc/monitor/mon-command.c
rf37e656d r5beb562 9 9 #include <rtems.h> 10 10 11 #include "monitor.h"11 #include <rtems/monitor.h> 12 12 13 13 #include <stdio.h> -
cpukit/libmisc/monitor/mon-config.c
rf37e656d r5beb562 10 10 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ 11 11 #include <rtems.h> 12 #include "monitor.h"12 #include <rtems/monitor.h> 13 13 14 14 #include <stdio.h> -
cpukit/libmisc/monitor/mon-dname.c
rf37e656d r5beb562 23 23 #include <rtems.h> 24 24 25 #include "monitor.h"25 #include <rtems/monitor.h> 26 26 27 27 #include <stdio.h> -
cpukit/libmisc/monitor/mon-driver.c
rf37e656d r5beb562 23 23 #include <rtems.h> 24 24 25 #include "monitor.h"25 #include <rtems/monitor.h> 26 26 27 27 #include <stdio.h> -
cpukit/libmisc/monitor/mon-extension.c
rf37e656d r5beb562 6 6 7 7 #include <rtems.h> 8 #include "monitor.h"8 #include <rtems/monitor.h> 9 9 10 10 #include <stdio.h> -
cpukit/libmisc/monitor/mon-itask.c
rf37e656d r5beb562 7 7 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ 8 8 #include <rtems.h> 9 #include "monitor.h"9 #include <rtems/monitor.h> 10 10 11 11 #include <stdio.h> -
cpukit/libmisc/monitor/mon-manager.c
rf37e656d r5beb562 7 7 8 8 #include <rtems.h> 9 #include "monitor.h"9 #include <rtems/monitor.h> 10 10 11 11 #include <stdio.h> 12 13 #include <monitor.h>14 12 15 13 /* -
cpukit/libmisc/monitor/mon-monitor.c
rf37e656d r5beb562 30 30 #include <unistd.h> 31 31 32 #include "monitor.h"32 #include <rtems/monitor.h> 33 33 34 34 /* set by trap handler */ -
cpukit/libmisc/monitor/mon-mpci.c
rf37e656d r5beb562 10 10 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ 11 11 #include <rtems.h> 12 #include "monitor.h"12 #include <rtems/monitor.h> 13 13 14 14 #include <stdio.h> -
cpukit/libmisc/monitor/mon-object.c
rf37e656d r5beb562 18 18 #define __RTEMS_VIOLATE_KERNEL_VISIBILITY__ 19 19 #include <rtems.h> 20 #include "monitor.h"20 #include <rtems/monitor.h> 21 21 22 22 #include <stdio.h> 23 23 #include <stdlib.h> /* strtoul() */ 24 24 #include <string.h> /* memcpy() */ 25 26 #include <monitor.h>27 25 28 26 #define NUMELEMS(arr) (sizeof(arr) / sizeof(arr[0])) -
cpukit/libmisc/monitor/mon-prmisc.c
rf37e656d r5beb562 9 9 10 10 #include <rtems.h> 11 #include "monitor.h"11 #include <rtems/monitor.h> 12 12 13 13 #include <rtems/assoc.h> -
cpukit/libmisc/monitor/mon-queue.c
rf37e656d r5beb562 4 4 5 5 #include <rtems.h> 6 #include "monitor.h"6 #include <rtems/monitor.h> 7 7 8 8 #include <stdio.h> -
cpukit/libmisc/monitor/mon-server.c
rf37e656d r5beb562 13 13 #include <unistd.h> 14 14 15 #include "monitor.h"15 #include <rtems/monitor.h> 16 16 17 17 /* -
cpukit/libmisc/monitor/mon-symbols.c
rf37e656d r5beb562 18 18 #include <string.h> 19 19 20 #include "monitor.h"21 #include "symbols.h"20 #include <rtems/monitor.h> 21 #include <rtems/symbols.h> 22 22 23 23 -
cpukit/libmisc/monitor/mon-task.c
rf37e656d r5beb562 6 6 7 7 #include <rtems.h> 8 #include "monitor.h"8 #include <rtems/monitor.h> 9 9 10 10 #include <stdio.h> -
cpukit/libmisc/monitor/monitor.h
rf37e656d r5beb562 13 13 #define __MONITOR_H 14 14 15 #include "symbols.h"15 #include <rtems/symbols.h> 16 16 #include <rtems/error.h> /* rtems_error() */ 17 17 -
cpukit/libmisc/monitor/symbols.h
rf37e656d r5beb562 32 32 typedef struct { 33 33 34 rtems_unsigned32 sorted; /* are symbols sorted right now? */ 35 36 rtems_unsigned32 growth_factor; /* % to grow by when needed */ 37 38 rtems_unsigned32 next; /* next symbol slot to use when adding */ 39 rtems_unsigned32 size; /* max # of symbols */ 34 rtems_unsigned32 sorted; /* are symbols sorted right now? */ 35 rtems_unsigned32 growth_factor; /* % to grow by when needed */ 36 rtems_unsigned32 next; /* next symbol slot to use when adding */ 37 rtems_unsigned32 size; /* max # of symbols */ 40 38 41 39 /*
Note: See TracChangeset
for help on using the changeset viewer.