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

4.104.114.84.95
Last change on this file since 2f564fee was 9e7c546, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:53:23

2003-09-04 Joel Sherrill <joel@…>

  • rtems/no-dpmem.c, rtems/no-event.c, rtems/no-mp.c, rtems/no-msg.c, rtems/no-part.c, rtems/no-region.c, rtems/no-rtmon.c, rtems/no-sem.c, rtems/no-signal.c, rtems/no-timer.c, sapi/no-ext.c, sapi/no-io.c: URL for license changed.
  • 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.rtems.com/license/LICENSE.
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.