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

4.104.114.84.95
Last change on this file since ea9d7db was ac7d5ef0, checked in by Joel Sherrill <joel.sherrill@…>, on 05/11/95 at 17:39:37

Initial revision

  • Property mode set to 100644
File size: 1.1 KB
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
41void _Event_Seize(
42  rtems_event_set event_in,
43  rtems_option    option_set,
44  rtems_interval  ticks
45)
46{
47}
48
49void _Event_Surrender(
50  Thread_Control *the_thread
51)
52{
53}
54
55void _Event_Timeout(
56  Objects_Id  id,
57  void       *ignored
58)
59{
60}
Note: See TracBrowser for help on using the repository browser.