summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/event.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-12-14 14:59:56 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-02-03 10:00:52 +0100
commitae85b0663eb19db435476d268a10187633f2ba56 (patch)
tree4696bcfaa9ccf2f07f2047853a7df56f7e36ea36 /cpukit/rtems/src/event.c
parentOptional Classic Signal initialization (diff)
downloadrtems-ae85b0663eb19db435476d268a10187633f2ba56.tar.bz2
Optional Classic Event initialization
Update #2408.
Diffstat (limited to 'cpukit/rtems/src/event.c')
-rw-r--r--cpukit/rtems/src/event.c32
1 files changed, 0 insertions, 32 deletions
diff --git a/cpukit/rtems/src/event.c b/cpukit/rtems/src/event.c
deleted file mode 100644
index 7ec44d741d..0000000000
--- a/cpukit/rtems/src/event.c
+++ /dev/null
@@ -1,32 +0,0 @@
-/**
- * @file
- *
- * @brief Event Manager Initialization
- * @ingroup ClassicEvent
- */
-
-/*
- * COPYRIGHT (c) 1989-2008.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <rtems/rtems/eventimpl.h>
-
-void _Event_Manager_initialization( void )
-{
- /*
- * Register the MP Process Packet routine.
- */
-
-#if defined(RTEMS_MULTIPROCESSING)
- _MPCI_Register_packet_processor( MP_PACKET_EVENT, _Event_MP_Process_packet );
-#endif
-}