source: rtems/c/src/optman/rtems/no-signal.c @ ce6e30b1

4.104.114.84.95
Last change on this file since ce6e30b1 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: 842 bytes
Line 
1/*
2 *  Signal Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
6 *  On-Line Applications Research Corporation (OAR).
7 *  All rights assigned to U.S. Government, 1994.
8 *
9 *  This material may be reproduced by or for the U.S. Government pursuant
10 *  to the copyright license under the clause at DFARS 252.227-7013.  This
11 *  notice must appear in all copies of this file and its derivatives.
12 *
13 *  $Id$
14 */
15
16#include <rtems/system.h>
17#include <rtems/asr.h>
18#include <rtems/isr.h>
19#include <rtems/modes.h>
20#include <rtems/signal.h>
21#include <rtems/thread.h>
22
23rtems_status_code rtems_signal_catch(
24  rtems_asr_entry   handler,
25  rtems_mode mode_set
26)
27{
28  return( RTEMS_NOT_CONFIGURED );
29}
30
31rtems_status_code rtems_signal_send(
32  Objects_Id             id,
33  rtems_signal_set signal_set
34)
35{
36  return( RTEMS_NOT_CONFIGURED );
37}
Note: See TracBrowser for help on using the repository browser.