⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 timer.c

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 C
字号:
/*  Timer_functions * *  These routines are the timer service routines used by this test. * *  Input parameters:  NONE * *  Output parameters:  NONE * *  COPYRIGHT (c) 1989-1999. *  On-Line Applications Research Corporation (OAR). * *  The license and distribution terms for this file may be *  found in the file LICENSE in this distribution or at *  http://www.rtems.com/license/LICENSE. * *  $Id: timer.c,v 1.8.8.1 2003/09/04 18:46:37 joel Exp $ */#include "system.h"rtems_timer_service_routine TA1_send_18_to_self_5_seconds(  rtems_id  ignored_id,  void     *ignored_address){  rtems_status_code status;  status = rtems_event_send( Task_id[ 1 ], RTEMS_EVENT_18 );  directive_failed_with_level( status, "rtems_event_send of 18", 1 );}rtems_timer_service_routine TA1_send_8_to_self_60_seconds(  rtems_id  ignored_id,  void     *ignored_address){  rtems_status_code status;  status = rtems_event_send( Task_id[ 1 ], RTEMS_EVENT_8 );  directive_failed_with_level( status, "rtems_event_send of 8", 1 );}rtems_timer_service_routine TA1_send_9_to_self_60_seconds(  rtems_id  ignored_id,  void     *ignored_address){  rtems_status_code status;  status = rtems_event_send( Task_id[ 1 ], RTEMS_EVENT_9 );  directive_failed_with_level( status, "rtems_event_send of 9", 1 );}rtems_timer_service_routine TA1_send_10_to_self(  rtems_id  ignored_id,  void     *ignored_address){  rtems_status_code status;  status = rtems_event_send( Task_id[ 1 ], RTEMS_EVENT_10 );  directive_failed_with_level( status, "rtems_event_send of 10", -1 );}rtems_timer_service_routine TA1_send_1_to_self_every_second(  rtems_id  ignored_id,  void     *ignored_address){  rtems_status_code status;  status = rtems_event_send( Task_id[ 1 ], RTEMS_EVENT_1 );  directive_failed_with_level( status, "rtems_event_send of 1", 1 );}rtems_timer_service_routine TA1_send_11_to_self(  rtems_id  ignored_id,  void     *ignored_address){  rtems_status_code status;  status = rtems_event_send( Task_id[ 1 ], RTEMS_EVENT_11 );  directive_failed_with_level( status, "rtems_event_send of 11", -1 );}rtems_timer_service_routine TA2_send_10_to_self(  rtems_id  ignored_id,  void     *ignored_address){  rtems_status_code status;  status = rtems_event_send( Task_id[ 2 ], RTEMS_EVENT_10 );  directive_failed_with_level( status, "rtems_event_send of 10", 1 );}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -