source: rtems/testsuites/mptests/mp03/delay.c @ 98e4ebf5

4.104.114.84.95
Last change on this file since 98e4ebf5 was 98e4ebf5, checked in by Joel Sherrill <joel.sherrill@…>, on 10/08/97 at 15:45:54

Fixed typo in the pointer to the license terms.

  • Property mode set to 100644
File size: 750 bytes
RevLine 
[ac7d5ef0]1/*  Delayed_send_event
2 *
3 *  This routine is a timer service routine which sends an event to task 1.
4 *
5 *  Input parameters:  NONE
6 *
7 *  Output parameters:  NONE
8 *
[03f2154e]9 *  COPYRIGHT (c) 1989-1997.
[ac7d5ef0]10 *  On-Line Applications Research Corporation (OAR).
[03f2154e]11 *  Copyright assigned to U.S. Government, 1994.
[ac7d5ef0]12 *
[98e4ebf5]13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
[03f2154e]15 *  http://www.OARcorp.com/rtems/license.html.
[ac7d5ef0]16 *
17 *  $Id$
18 */
19
20#include "system.h"
21
22rtems_timer_service_routine Delayed_send_event(
23  rtems_id  ignored_id,
24  void     *ignored_address
25)
26{
27  rtems_status_code status;
28
29  status = rtems_event_send( Task_id[ 1 ], RTEMS_EVENT_16 );
30  directive_failed( status, "rtems_event_send" );
31}
Note: See TracBrowser for help on using the repository browser.