51 lines
1.2 KiB
C
51 lines
1.2 KiB
C
/* taskDefs.h - Constants and other definitions required by taskLib */
|
|
|
|
/*
|
|
* Copyright (c) 2005 Wind River Systems, Inc.
|
|
*
|
|
* The right to copy, distribute, modify or otherwise make use
|
|
* of this software may be licensed only pursuant to the terms
|
|
* of an applicable Wind River license agreement.
|
|
*/
|
|
|
|
/*
|
|
modification history
|
|
--------------------
|
|
01a,15aug05,yvp written by extracting definitions from taskLib.h & taskLibP.h
|
|
*/
|
|
|
|
#ifndef __INCtaskDefsh
|
|
#define __INCtaskDefsh
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* includes */
|
|
|
|
#include "vxWorks.h"
|
|
|
|
/* defines */
|
|
|
|
#define VX_USER_MODE 0x0000 /* INTERNAL: tasks in user mode */
|
|
#define VX_SUPERVISOR_MODE 0x0001 /* INTERNAL: tasks in sup mode */
|
|
#define VX_DEALLOC_STACK 0x0004 /* INTERNAL: deallocate stack */
|
|
#define VX_TASK_OBJ_OWNER 0x0800 /* INTERNAL: task owns objs directly */
|
|
#define VX_DEALLOC_EXC_STACK 0x1000 /* INTERNAL: deallocate the exc stack */
|
|
#define VX_DEALLOC_TCB 0x8000 /* INTERNAL: deallocate the task TCB */
|
|
|
|
|
|
#ifndef _WRS_ARCH_IS_SIMULATOR
|
|
#define KERNEL_TASK_EXC_STACK_SIZE 4096
|
|
#else
|
|
#define KERNEL_TASK_EXC_STACK_SIZE (4096*3)
|
|
#endif /* _WRS_ARCH_IS_SIMULATOR */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __INCtaskDefsh */
|