source: rtems/c/src/exec/rtems/optman/no-signal.c @ 98e4ebf5

4.104.114.84.95
Last change on this file since 98e4ebf5 was 98e4ebf5, checked in by Joel Sherrill <joel.sherrill@…>, on 10/08/97 at 15:45:54

Fixed typo in the pointer to the license terms.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 *  Signal Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989-1997.
6 *  On-Line Applications Research Corporation (OAR).
7 *  Copyright assigned to U.S. Government, 1994.
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
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#include <rtems/score/interr.h>
21
22#include <rtems/rtems/asr.h>
23#include <rtems/rtems/modes.h>
24#include <rtems/rtems/signal.h>
25
26void _Signal_Manager_initialization( void )
27{
28}
29 
30rtems_status_code rtems_signal_catch(
31  rtems_asr_entry   handler,
32  rtems_mode        mode_set
33)
34{
35  _Internal_error_Occurred(
36    INTERNAL_ERROR_RTEMS_API,
37    FALSE,
38    RTEMS_NOT_CONFIGURED
39  );
40  return RTEMS_NOT_CONFIGURED;
41}
42
43rtems_status_code rtems_signal_send(
44  rtems_id         id,
45  rtems_signal_set signal_set
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
56/* end of file */
Note: See TracBrowser for help on using the repository browser.