OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [rtems/] [optman/] [no-signal.c] - Blame information for rev 587

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*
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: no-signal.c,v 1.2 2001-09-27 11:59:19 chris Exp $
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
 
25
void _Signal_Manager_initialization( void )
26
{
27
}
28
 
29
rtems_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
 
42
rtems_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 */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.