Changeset 4b487363 in rtems
- Timestamp:
- Nov 2, 2004, 9:39:02 AM (16 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- d964f79
- Parents:
- 160965c
- Location:
- cpukit
- Files:
-
- 32 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r160965c r4b487363 1 2004-11-02 Ralf Corsepius <ralf_corsepiu@rtems.org> 2 3 * rtems/include/rtems.h, 4 rtems/include/rtems/rtems/asr.h, 5 rtems/include/rtems/rtems/attr.h, 6 rtems/include/rtems/rtems/cache.h, 7 rtems/include/rtems/rtems/clock.h, 8 rtems/include/rtems/rtems/config.h, 9 rtems/include/rtems/rtems/dpmem.h, 10 rtems/include/rtems/rtems/event.h, 11 rtems/include/rtems/rtems/eventmp.h, 12 rtems/include/rtems/rtems/eventset.h, 13 rtems/include/rtems/rtems/intr.h, 14 rtems/include/rtems/rtems/message.h, 15 rtems/include/rtems/rtems/modes.h, 16 rtems/include/rtems/rtems/mp.h, 17 rtems/include/rtems/rtems/msgmp.h, 18 rtems/include/rtems/rtems/options.h, 19 rtems/include/rtems/rtems/part.h, 20 rtems/include/rtems/rtems/partmp.h, 21 rtems/include/rtems/rtems/ratemon.h, 22 rtems/include/rtems/rtems/region.h, 23 rtems/include/rtems/rtems/regionmp.h, 24 rtems/include/rtems/rtems/rtemsapi.h, 25 rtems/include/rtems/rtems/sem.h, 26 rtems/include/rtems/rtems/semmp.h, 27 rtems/include/rtems/rtems/signal.h, 28 rtems/include/rtems/rtems/signalmp.h, 29 rtems/include/rtems/rtems/status.h, 30 rtems/include/rtems/rtems/support.h, 31 rtems/include/rtems/rtems/taskmp.h, 32 rtems/include/rtems/rtems/tasks.h, 33 rtems/include/rtems/rtems/timer.h, 34 rtems/include/rtems/rtems/types.h: Add doxygen preamble. 35 1 36 2004-11-01 Joel Sherrill <joel@OARcorp.com> 2 37 -
cpukit/rtems/include/rtems/rtems/asr.h
r160965c r4b487363 1 /* asr.h 2 * 1 /** 2 * @file rtems/rtems/asr.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the Asynchronous Signal Handler. This Handler provides the low-level -
cpukit/rtems/include/rtems/rtems/attr.h
r160965c r4b487363 1 /* attr.h 2 * 1 /** 2 * @file rtems/rtems/attr.h 3 */ 4 5 /* 3 6 * This include file contains all information about the Object Attributes 4 7 * Handler. -
cpukit/rtems/include/rtems/rtems/cache.h
r160965c r4b487363 1 /* cache.h 2 * 1 /** 2 * @file rtems/rtems/cache.h 3 */ 4 5 /* 3 6 * Cache Manager 4 7 * -
cpukit/rtems/include/rtems/rtems/clock.h
r160965c r4b487363 1 /* clock.h 2 * 1 /** 2 * @file rtems/rtems/clock.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the Clock Manager. This manager provides facilities to set, obtain, -
cpukit/rtems/include/rtems/rtems/config.h
r160965c r4b487363 1 /* config.h 2 * 1 /** 2 * @file rtems/rtems/config.h 3 */ 4 5 /* 3 6 * This include file contains the table of user defined configuration 4 7 * parameters specific for the RTEMS API. -
cpukit/rtems/include/rtems/rtems/dpmem.h
r160965c r4b487363 1 /* dpmem.h 2 * 1 /** 2 * @file rtems/rtems/dpmem.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the Dual Ported Memory Manager. This manager provides a mechanism -
cpukit/rtems/include/rtems/rtems/event.h
r160965c r4b487363 1 /* event.h 2 * 1 /** 2 * @file rtems/rtems/event.h 3 */ 4 5 /* 3 6 * This include file contains the information pertaining to the Event 4 7 * Manager. This manager provides a high performance method of communication -
cpukit/rtems/include/rtems/rtems/eventmp.h
r160965c r4b487363 1 /* eventmp.h 2 * 1 /** 2 * @file rtems/rtems/eventmp.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the Multiprocessing Support in the Event Manager. -
cpukit/rtems/include/rtems/rtems/eventset.h
r160965c r4b487363 1 /* eventset.h 2 * 1 /** 2 * @file rtems/rtems/eventset.h 3 */ 4 5 /* 3 6 * This include file contains the information pertaining to the 4 7 * Event Sets Handler. This handler provides methods for the manipulation -
cpukit/rtems/include/rtems/rtems/intr.h
r160965c r4b487363 1 /* intr.h 2 * 1 /** 2 * @file rtems/rtems/intr.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the Interrupt Manager. -
cpukit/rtems/include/rtems/rtems/message.h
r160965c r4b487363 1 /* message.h 2 * 1 /** 2 * @file rtems/rtems/message.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the Message Queue Manager. This manager provides a mechanism for … … 38 41 #include <rtems/score/object.h> 39 42 #include <rtems/rtems/attr.h> 40 #include <rtems/score/threadq.h>41 43 #include <rtems/score/coremsg.h> 42 44 -
cpukit/rtems/include/rtems/rtems/modes.h
r160965c r4b487363 1 /* modes.h 2 * 1 /** 2 * @file rtems/rtems/modes.h 3 */ 4 5 /* 3 6 * This include file contains all constants and structures associated 4 7 * with the RTEMS thread and RTEMS_ASR modes. -
cpukit/rtems/include/rtems/rtems/mp.h
r160965c r4b487363 1 /* mp.h 2 * 1 /** 2 * @file rtems/rtems/mp.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the Multiprocessing Manager. -
cpukit/rtems/include/rtems/rtems/msgmp.h
r160965c r4b487363 1 /* msgmp.h 2 * 1 /** 2 * @file rtems/rtems/msgmp.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the Multiprocessing Support in the Message Manager. -
cpukit/rtems/include/rtems/rtems/options.h
r160965c r4b487363 1 /* options.h 2 * 1 /** 2 * @file rtems/rtems/options.h 3 */ 4 5 /* 3 6 * This include file contains information which defines the 4 7 * options available on many directives. -
cpukit/rtems/include/rtems/rtems/part.h
r160965c r4b487363 1 /* partition.h 2 * 1 /** 2 * @file rtems/rtems/part.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the Partition Manager. This manager provides facilities to -
cpukit/rtems/include/rtems/rtems/partmp.h
r160965c r4b487363 1 /* partmp.h 2 * 1 /** 2 * @file rtems/rtems/partmp.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the Multiprocessing Support in the Partition Manager. -
cpukit/rtems/include/rtems/rtems/ratemon.h
r160965c r4b487363 1 /* ratemon.h 2 * 1 /** 2 * @file rtems/rtems/ratemon.h 3 */ 4 5 /* 3 6 * This include file contains all the constants, structures, and 4 7 * prototypes associated with the Rate Monotonic Manager. This manager -
cpukit/rtems/include/rtems/rtems/region.h
r160965c r4b487363 1 /* region.h 2 * 1 /** 2 * @file rtems/rtems/region.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the Region Manager. This manager provides facilities to dynamically -
cpukit/rtems/include/rtems/rtems/regionmp.h
r160965c r4b487363 1 /* regionmp.h 2 * 1 /** 2 * @file rtems/rtems/regionmp.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the Multiprocessing Support in the Region Manager. -
cpukit/rtems/include/rtems/rtems/rtemsapi.h
r160965c r4b487363 1 /** 2 * @file rtems/rtems/rtemsapi.h 3 */ 4 1 5 /* 2 6 * RTEMS API Support 3 *4 * NOTE:5 7 * 6 8 * COPYRIGHT (c) 1989-1999. -
cpukit/rtems/include/rtems/rtems/sem.h
r160965c r4b487363 1 /* semaphore.h 2 * 1 /** 2 * @file rtems/rtems/sem.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the Semaphore Manager. This manager utilizes standard Dijkstra … … 38 41 #include <rtems/score/object.h> 39 42 #include <rtems/score/coresem.h> 40 #include <rtems/score/threadq.h>41 43 42 44 /* -
cpukit/rtems/include/rtems/rtems/semmp.h
r160965c r4b487363 1 /* semmp.h 2 * 1 /** 2 * @file rtems/rtems/semmp.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the Multiprocessing Support in the Semaphore Manager. -
cpukit/rtems/include/rtems/rtems/signal.h
r160965c r4b487363 1 /* signal.h 2 * 1 /** 2 * @file rtems/rtems/signal.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the Signal Manager. This manager provides capabilities required -
cpukit/rtems/include/rtems/rtems/signalmp.h
r160965c r4b487363 1 /* signalmp.h 2 * 1 /** 2 * @file rtems/rtems/signalmp.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the Multiprocessing Support in the Signal Manager. -
cpukit/rtems/include/rtems/rtems/status.h
r160965c r4b487363 1 /* status.h 2 * 1 /** 2 * @file rtems/rtems/status.h 3 */ 4 5 /* 3 6 * This include file contains the status codes returned from the 4 7 * executive directives. -
cpukit/rtems/include/rtems/rtems/support.h
r160965c r4b487363 1 /* support.h 2 * 1 /** 2 * @file rtems/rtems/support.h 3 */ 4 5 /* 3 6 * This include file contains information about support functions for 4 7 * the RTEMS API. -
cpukit/rtems/include/rtems/rtems/taskmp.h
r160965c r4b487363 1 /* taskmp.h 2 * 1 /** 2 * @file rtems/rtems/taskmp.h 3 */ 4 5 /* 3 6 * This include file contains all the constants and structures associated 4 7 * with the multiprocessing support in the task manager. -
cpukit/rtems/include/rtems/rtems/tasks.h
r160965c r4b487363 1 /* tasks.h 2 * 1 /** 2 * @file rtems/rtems/tasks.h 3 */ 4 5 /* 3 6 * This include file contains all constants and structures associated 4 7 * with RTEMS tasks. This manager provides a comprehensive set of directives -
cpukit/rtems/include/rtems/rtems/timer.h
r160965c r4b487363 1 /* timer.h 2 * 1 /** 2 * @file rtems/rtems/timer.h 3 */ 4 5 /* 3 6 * This include file contains all the constants, structures, and 4 7 * prototypes associated with the Timer Manager. This manager provides -
cpukit/rtems/include/rtems/rtems/types.h
r160965c r4b487363 1 /* types.h 2 * 1 /** 2 * @file rtems/rtems/types.h 3 */ 4 5 /* 3 6 * This include file defines the types used by the RTEMS API. 4 7 *
Note: See TracChangeset
for help on using the changeset viewer.