source: rtems/c/src/optman/rtems/no-event.c @ 84ff7c23

4.104.114.84.95
Last change on this file since 84ff7c23 was 03f2154e, checked in by Joel Sherrill <joel.sherrill@…>, on 04/22/97 at 17:20:27

headers updated to reflect new style copyright notice as part
of switching to the modified GNU GPL.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 *  Event Manager
3 *
4 *  COPYRIGHT (c) 1989-1997.
5 *  On-Line Applications Research Corporation (OAR).
6 *  Copyright assigned to U.S. Government, 1994.
7 *
8 *  The license and distribution terms for this file may in
9 *  the file LICENSE in this distribution or at
10 *  http://www.OARcorp.com/rtems/license.html.
11 *
12 *  $Id$
13 */
14
15#include <rtems/system.h>
16#include <rtems/rtems/status.h>
17#include <rtems/rtems/event.h>
18#include <rtems/score/isr.h>
19#include <rtems/score/object.h>
20#include <rtems/rtems/options.h>
21#include <rtems/score/states.h>
22#include <rtems/score/thread.h>
23#include <rtems/score/interr.h>
24
25void _Event_Manager_initialization( void )
26{
27}
28
29rtems_status_code rtems_event_send(
30  Objects_Id         id,
31  rtems_event_set event_in
32)
33{
34  _Internal_error_Occurred(
35    INTERNAL_ERROR_RTEMS_API,
36    FALSE,
37    RTEMS_NOT_CONFIGURED
38  );
39  return RTEMS_NOT_CONFIGURED;
40}
41
42rtems_status_code rtems_event_receive(
43  rtems_event_set  event_in,
44  rtems_option     option_set,
45  rtems_interval   ticks,
46  rtems_event_set *event_out
47)
48{
49  _Internal_error_Occurred(
50    INTERNAL_ERROR_RTEMS_API,
51    FALSE,
52    RTEMS_NOT_CONFIGURED
53  );
54  return RTEMS_NOT_CONFIGURED;
55}
56
Note: See TracBrowser for help on using the repository browser.