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

4.104.114.84.95
Last change on this file since c701f197 was 5e9b32b, checked in by Joel Sherrill <joel.sherrill@…>, on 09/26/95 at 19:27:15

posix support initially added

  • Property mode set to 100644
File size: 988 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/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
24rtems_status_code rtems_event_send(
25  Objects_Id         id,
26  rtems_event_set event_in
27)
28{
29  return RTEMS_NOT_CONFIGURED;
30}
31
32rtems_status_code rtems_event_receive(
33  rtems_event_set  event_in,
34  rtems_option     option_set,
35  rtems_interval   ticks,
36  rtems_event_set *event_out
37)
38{
39  return RTEMS_NOT_CONFIGURED;
40}
41
Note: See TracBrowser for help on using the repository browser.