source: rtems/cpukit/rtems/src/signal.c @ 811804fe

4.104.114.84.95
Last change on this file since 811804fe was 0123e3b, checked in by Joel Sherrill <joel.sherrill@…>, on 05/17/99 at 23:20:52

Split Signal Manager into one routine per file.

  • Property mode set to 100644
File size: 1018 bytes
Line 
1/*
2 *  Signal Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989-1998.
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/rtems/asr.h>
19#include <rtems/score/isr.h>
20#include <rtems/rtems/modes.h>
21#include <rtems/rtems/signal.h>
22#include <rtems/score/thread.h>
23#include <rtems/rtems/tasks.h>
24
25/*PAGE
26 *
27 *  _Signal_Manager_initialization
28 *
29 *  This routine initializes all signal manager related data structures.
30 *
31 *  Input parameters:   NONE
32 *
33 *  Output parameters:  NONE
34 */
35 
36void _Signal_Manager_initialization( void )
37{
38  /*
39   *  Register the MP Process Packet routine.
40   */
41 
42#if defined(RTEMS_MULTIPROCESSING)
43  _MPCI_Register_packet_processor(
44    MP_PACKET_SIGNAL,
45    _Signal_MP_Process_packet
46  );
47#endif
48}
Note: See TracBrowser for help on using the repository browser.