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

4.104.114.84.95
Last change on this file since 9eef52b was 60b791ad, checked in by Joel Sherrill <joel.sherrill@…>, on 02/17/98 at 23:46:28

updated copyright to 1998

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[ac7d5ef0]1/*
2 *  Signal Manager
3 *
4 *
[60b791ad]5 *  COPYRIGHT (c) 1989-1998.
[ac7d5ef0]6 *  On-Line Applications Research Corporation (OAR).
[03f2154e]7 *  Copyright assigned to U.S. Government, 1994.
[ac7d5ef0]8 *
[98e4ebf5]9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
[03f2154e]11 *  http://www.OARcorp.com/rtems/license.html.
[ac7d5ef0]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>
[3b76313]20#include <rtems/score/interr.h>
[ac7d5ef0]21
[3a4ae6c]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 
[ac7d5ef0]30rtems_status_code rtems_signal_catch(
31  rtems_asr_entry   handler,
[7f6a24ab]32  rtems_mode        mode_set
[ac7d5ef0]33)
34{
[3b76313]35  _Internal_error_Occurred(
36    INTERNAL_ERROR_RTEMS_API,
37    FALSE,
38    RTEMS_NOT_CONFIGURED
39  );
[3a4ae6c]40  return RTEMS_NOT_CONFIGURED;
[ac7d5ef0]41}
42
43rtems_status_code rtems_signal_send(
[7f6a24ab]44  rtems_id         id,
[ac7d5ef0]45  rtems_signal_set signal_set
46)
47{
[3b76313]48  _Internal_error_Occurred(
49    INTERNAL_ERROR_RTEMS_API,
50    FALSE,
51    RTEMS_NOT_CONFIGURED
52  );
[3a4ae6c]53  return RTEMS_NOT_CONFIGURED;
[ac7d5ef0]54}
[3a4ae6c]55
56/* end of file */
Note: See TracBrowser for help on using the repository browser.