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

4.104.114.84.95
Last change on this file since 62c4e481 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
RevLine 
[ac7d5ef0]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>
[3a4ae6c]17#include <rtems/rtems/status.h>
[5e9b32b]18#include <rtems/score/isr.h>
19#include <rtems/score/thread.h>
[ac7d5ef0]20
[3a4ae6c]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 
[ac7d5ef0]29rtems_status_code rtems_signal_catch(
30  rtems_asr_entry   handler,
[7f6a24ab]31  rtems_mode        mode_set
[ac7d5ef0]32)
33{
[3a4ae6c]34  return RTEMS_NOT_CONFIGURED;
[ac7d5ef0]35}
36
37rtems_status_code rtems_signal_send(
[7f6a24ab]38  rtems_id         id,
[ac7d5ef0]39  rtems_signal_set signal_set
40)
41{
[3a4ae6c]42  return RTEMS_NOT_CONFIGURED;
[ac7d5ef0]43}
[3a4ae6c]44
45/* end of file */
Note: See TracBrowser for help on using the repository browser.