|
|
@ -14,7 +14,6 @@ |
|
|
|
#define __VXWORKS_VXWORKSCOMMON_H |
|
|
|
|
|
|
|
#include <SylixOS.h> |
|
|
|
#include "types/vxTypes.h" |
|
|
|
|
|
|
|
#if !defined(EOF) || (EOF != (-1)) |
|
|
|
#define EOF (-1) |
|
|
@ -138,6 +137,13 @@ extern size_t vmPageSize; |
|
|
|
#define _WRS_CONFIG_LP64 1 |
|
|
|
#endif |
|
|
|
|
|
|
|
/* Type for arbitrary user-supplied argument to a user-supplied routine. */ |
|
|
|
#ifdef _WRS_CONFIG_LP64 |
|
|
|
typedef long _Vx_usr_arg_t; |
|
|
|
#else |
|
|
|
typedef int _Vx_usr_arg_t; |
|
|
|
#endif /* _WRS_CONFIG_LP64 */ |
|
|
|
|
|
|
|
#ifdef _WRS_KERNEL |
|
|
|
#include "version.h" /* kernel version numbers */ |
|
|
|
#endif |
|
|
|