source: rtems/testsuites/mptests/mp14/delay.c @ 0897d38

4.104.114.84.95
Last change on this file since 0897d38 was 0897d38, checked in by Joel Sherrill <joel.sherrill@…>, on 11/07/01 at 23:04:50

2001-11-07 Joel Sherrill <joel@…>

Tracked as PR72 but related to the object id problem (PR36)
reported by Todor.Todorov@….

  • mp03/delay.c: Dispatch disable level is actually 1 not 0.
  • mp13/system.h: Configure enough tasks (CONFIGURE_MAXIMUM_TASKS=3).
  • mp14/delay.c: Dispatch disable level may be arbitrarily > 0.
  • Property mode set to 100644
File size: 762 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  fatal_directive_check_status_only( status, RTEMS_SUCCESSFUL, "rtems_event_send" );
33}
Note: See TracBrowser for help on using the repository browser.