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

4.104.114.84.95
Last change on this file since 8bdcfc4 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: 969 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/rtems/status.h>
18#include <rtems/score/isr.h>
19#include <rtems/score/thread.h>
20
21#include <rtems/rtems/asr.h>
22#include <rtems/rtems/modes.h>
23#include <rtems/rtems/signal.h>
24
25void _Signal_Manager_initialization( void )
26{
27}
28 
29rtems_status_code rtems_signal_catch(
30  rtems_asr_entry   handler,
31  rtems_mode        mode_set
32)
33{
34  return RTEMS_NOT_CONFIGURED;
35}
36
37rtems_status_code rtems_signal_send(
38  rtems_id         id,
39  rtems_signal_set signal_set
40)
41{
42  return RTEMS_NOT_CONFIGURED;
43}
44
45/* end of file */
Note: See TracBrowser for help on using the repository browser.