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

4.104.114.84.95
Last change on this file since 7f6a24ab was 7f6a24ab, checked in by Joel Sherrill <joel.sherrill@…>, on 08/28/95 at 15:30:29

Added unused priority ceiling parameter to rtems_semaphore_create.

Rearranged code to created thread handler routines to initialize,
start, restart, and "close/delete" a thread.

Made internal threads their own object class. This now uses the
thread support routines for starting and initializing a thread.

Insured deleted tasks are freed to the Inactive pool associated with the
correct Information block.

Added an RTEMS API specific data area to the thread control block.

Beginnings of removing the word "rtems" from the core.

  • Property mode set to 100644
File size: 843 bytes
Line 
1/*
2 *  Signal Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
6 *  On-Line Applications Research Corporation (OAR).
7 *  All rights assigned to U.S. Government, 1994.
8 *
9 *  This material may be reproduced by or for the U.S. Government pursuant
10 *  to the copyright license under the clause at DFARS 252.227-7013.  This
11 *  notice must appear in all copies of this file and its derivatives.
12 *
13 *  $Id$
14 */
15
16#include <rtems/system.h>
17#include <rtems/asr.h>
18#include <rtems/isr.h>
19#include <rtems/modes.h>
20#include <rtems/signal.h>
21#include <rtems/thread.h>
22
23rtems_status_code rtems_signal_catch(
24  rtems_asr_entry   handler,
25  rtems_mode        mode_set
26)
27{
28  return( RTEMS_NOT_CONFIGURED );
29}
30
31rtems_status_code rtems_signal_send(
32  rtems_id         id,
33  rtems_signal_set signal_set
34)
35{
36  return( RTEMS_NOT_CONFIGURED );
37}
Note: See TracBrowser for help on using the repository browser.