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

Last change on this file since c8f3e82 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

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