source: anotherchoice/tags/jsp-1.4.4-full-UTF8/sample/cxx_sample2.cfg@ 363

Last change on this file since 363 was 363, checked in by ykominami, 5 years ago

add tags/jsp-1.4.4-full-UTF8

  • Property svn:executable set to *
File size: 990 bytes
Line 
1/*
2 * @(#) $Id: cxx_sample2.cfg,v 1.1 2003/12/05 12:54:42 honda Exp $
3 */
4
5#define _MACRO_ONLY
6#include "cxx_sample2.h"
7
8INCLUDE("\"cxx_sample2.h\"");
9CRE_TSK(MAIN_TASK, { TA_HLNG | TA_ACT, 0, main_task, MAIN_PRIORITY,
10 STACK_SIZE, NULL });
11CRE_TSK(1, { TA_HLNG, (VP_INT) 1, task, MID_PRIORITY, STACK_SIZE, NULL });
12CRE_TSK(2, { TA_HLNG, (VP_INT) 2, task, MID_PRIORITY, STACK_SIZE, NULL });
13CRE_TSK(3, { TA_HLNG, (VP_INT) 3, task, MID_PRIORITY, STACK_SIZE, NULL });
14CRE_TSK(4, { TA_HLNG, (VP_INT) 4, task, MID_PRIORITY, STACK_SIZE, NULL });
15CRE_TSK(5, { TA_HLNG, (VP_INT) 5, task, MID_PRIORITY, STACK_SIZE, NULL });
16
17CRE_SEM(1, { TA_TFIFO, 1, 1 });
18CRE_SEM(2, { TA_TFIFO, 1, 1 });
19CRE_SEM(3, { TA_TFIFO, 1, 1 });
20CRE_SEM(4, { TA_TFIFO, 1, 1 });
21CRE_SEM(5, { TA_TFIFO, 1, 1 });
22
23CRE_FLG(EVENT_FLAG1, { TA_TFIFO | TA_WSGL, 0 });
24
25#include "@(SRCDIR)/systask/cxxrt.cfg"
26#include "@(SRCDIR)/systask/timer.cfg"
27#include "@(SRCDIR)/systask/serial.cfg"
28#include "@(SRCDIR)/systask/logtask.cfg"
Note: See TracBrowser for help on using the repository browser.