source: rtems/testsuites/mptests/mp14/delay.c @ 08311cc3

4.104.114.84.95
Last change on this file since 08311cc3 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: 727 bytes
Line 
1/*  Delayed_send_event
2 *
3 *  This routine is a timer service routine which sends an event to a task.
4 *
5 *  Input parameters:  NONE
6 *
7 *  Output parameters:  NONE
8 *
9 *  COPYRIGHT (c) 1989-1999.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.OARcorp.com/rtems/license.html.
15 *
16 *  $Id$
17 */
18
19#include "system.h"
20
21rtems_timer_service_routine Delayed_send_event(
22  rtems_id  timer_id,
23  void     *ignored
24)
25{
26  rtems_status_code status;
27
28  status = rtems_event_send(
29    Task_id[ rtems_get_index( timer_id ) ],
30    RTEMS_EVENT_16
31  );
32  directive_failed( status, "rtems_event_send" );
33}
Note: See TracBrowser for help on using the repository browser.