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

4.104.114.84.95
Last change on this file since 9eef52b was 60b791ad, checked in by Joel Sherrill <joel.sherrill@…>, on 02/17/98 at 23:46:28

updated copyright to 1998

  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[ac7d5ef0]1/*
2 *  Event Manager
3 *
[60b791ad]4 *  COPYRIGHT (c) 1989-1998.
[ac7d5ef0]5 *  On-Line Applications Research Corporation (OAR).
[03f2154e]6 *  Copyright assigned to U.S. Government, 1994.
[ac7d5ef0]7 *
[98e4ebf5]8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
[03f2154e]10 *  http://www.OARcorp.com/rtems/license.html.
[ac7d5ef0]11 *
12 *  $Id$
13 */
14
15#include <rtems/system.h>
[3a4ae6c]16#include <rtems/rtems/status.h>
17#include <rtems/rtems/event.h>
[5e9b32b]18#include <rtems/score/isr.h>
19#include <rtems/score/object.h>
[3a4ae6c]20#include <rtems/rtems/options.h>
[5e9b32b]21#include <rtems/score/states.h>
22#include <rtems/score/thread.h>
[3b76313]23#include <rtems/score/interr.h>
24
25void _Event_Manager_initialization( void )
26{
27}
[ac7d5ef0]28
29rtems_status_code rtems_event_send(
30  Objects_Id         id,
31  rtems_event_set event_in
32)
33{
[3b76313]34  _Internal_error_Occurred(
35    INTERNAL_ERROR_RTEMS_API,
36    FALSE,
37    RTEMS_NOT_CONFIGURED
38  );
[3a4ae6c]39  return RTEMS_NOT_CONFIGURED;
[ac7d5ef0]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{
[3b76313]49  _Internal_error_Occurred(
50    INTERNAL_ERROR_RTEMS_API,
51    FALSE,
52    RTEMS_NOT_CONFIGURED
53  );
[3a4ae6c]54  return RTEMS_NOT_CONFIGURED;
[ac7d5ef0]55}
56
Note: See TracBrowser for help on using the repository browser.