summaryrefslogtreecommitdiffstats
path: root/c/src/optman/rtems/no-event.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-05-09 18:47:03 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-05-09 18:47:03 +0000
commitff114dc5bff1783dedf2dae08b1f98c84a915be8 (patch)
treefe6055d8f1a1704d9d3339f262b09fef4afaa396 /c/src/optman/rtems/no-event.c
parent2007-05-09 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-ff114dc5bff1783dedf2dae08b1f98c84a915be8.tar.bz2
2007-05-09 Joel Sherrill <joel.sherrill@OARcorp.com>
* optman/Makefile.am, optman/preinstall.am, optman/rtems/no-dpmem.c, optman/rtems/no-event.c, optman/rtems/no-mp.c, optman/rtems/no-msg.c, optman/rtems/no-part.c, optman/rtems/no-region.c, optman/rtems/no-rtmon.c, optman/rtems/no-sem.c, optman/rtems/no-signal.c, optman/rtems/no-timer.c, optman/sapi/no-ext.c: Add optional manager stub for Barrier. Simplify other optional managers so using them reduces application size instead of increasing it. * optman/rtems/no-barrier.c: New file.
Diffstat (limited to 'c/src/optman/rtems/no-event.c')
-rw-r--r--c/src/optman/rtems/no-event.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/c/src/optman/rtems/no-event.c b/c/src/optman/rtems/no-event.c
index 1b8b3cce49..256e9d7d6b 100644
--- a/c/src/optman/rtems/no-event.c
+++ b/c/src/optman/rtems/no-event.c
@@ -25,30 +25,3 @@ void _Event_Manager_initialization( void )
{
}
-rtems_status_code rtems_event_send(
- Objects_Id id,
- rtems_event_set event_in
-)
-{
- _Internal_error_Occurred(
- INTERNAL_ERROR_RTEMS_API,
- FALSE,
- RTEMS_NOT_CONFIGURED
- );
- return RTEMS_NOT_CONFIGURED;
-}
-
-rtems_status_code rtems_event_receive(
- rtems_event_set event_in,
- rtems_option option_set,
- rtems_interval ticks,
- rtems_event_set *event_out
-)
-{
- _Internal_error_Occurred(
- INTERNAL_ERROR_RTEMS_API,
- FALSE,
- RTEMS_NOT_CONFIGURED
- );
- return RTEMS_NOT_CONFIGURED;
-}