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

Last change on this file since c8f3e82 was 08311cc3, checked in by Joel Sherrill <joel.sherrill@…>, on 11/17/99 at 17:51:34

Updated copyright notice.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*
2 *  Signal Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989-1999.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.OARcorp.com/rtems/license.html.
11 *
12 *  $Id$
13 */
14
15#include <rtems/system.h>
16#include <rtems/rtems/status.h>
17#include <rtems/score/isr.h>
18#include <rtems/score/thread.h>
19#include <rtems/score/interr.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  _Internal_error_Occurred(
35    INTERNAL_ERROR_RTEMS_API,
36    FALSE,
37    RTEMS_NOT_CONFIGURED
38  );
39  return RTEMS_NOT_CONFIGURED;
40}
41
42rtems_status_code rtems_signal_send(
43  rtems_id         id,
44  rtems_signal_set signal_set
45)
46{
47  _Internal_error_Occurred(
48    INTERNAL_ERROR_RTEMS_API,
49    FALSE,
50    RTEMS_NOT_CONFIGURED
51  );
52  return RTEMS_NOT_CONFIGURED;
53}
54
55/* end of file */
Note: See TracBrowser for help on using the repository browser.