?? task2.c
字號:
/* * FILENAME: task2.c * * Copyright 2004 By InterNiche Technologies Inc. All rights reserved * * MODULE: SAMPLE * * PORTABLE: yes */#include "ipport.h"extern long task2_wakes; /* count wakeups *//* FUNCTION: TK_ENTRY() * * Task2 * * PARAM1: n/a * * RETURNS: n/a */TK_ENTRY(tk_task2){ for (;;) { TK_SLEEP( (TPS*2)-1 ); dprintf( "2"); task2_wakes++; /* count wakeups */ } TK_RETURN_OK();}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -