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

4.104.114.84.95
Last change on this file since e7e016f was ce6e30b1, checked in by Joel Sherrill <joel.sherrill@…>, on 08/04/95 at 22:18:11

Split out event manager support function

  • Property mode set to 100644
File size: 926 bytes
Line 
1/*
2 *  Event Manager
3 *
4 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
5 *  On-Line Applications Research Corporation (OAR).
6 *  All rights assigned to U.S. Government, 1994.
7 *
8 *  This material may be reproduced by or for the U.S. Government pursuant
9 *  to the copyright license under the clause at DFARS 252.227-7013.  This
10 *  notice must appear in all copies of this file and its derivatives.
11 *
12 *  $Id$
13 */
14
15#include <rtems/system.h>
16#include <rtems/event.h>
17#include <rtems/isr.h>
18#include <rtems/object.h>
19#include <rtems/options.h>
20#include <rtems/states.h>
21#include <rtems/thread.h>
22
23rtems_status_code rtems_event_send(
24  Objects_Id         id,
25  rtems_event_set event_in
26)
27{
28  return( RTEMS_NOT_CONFIGURED );
29}
30
31rtems_status_code rtems_event_receive(
32  rtems_event_set  event_in,
33  rtems_option     option_set,
34  rtems_interval   ticks,
35  rtems_event_set *event_out
36)
37{
38  return( RTEMS_NOT_CONFIGURED );
39}
40
Note: See TracBrowser for help on using the repository browser.