blob: f15b23046219d94673944fa01df7ec9488a86fc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
//* -*- C++ -*- */
// $Id: config-vxworks6.9.h 96017 2012-08-08 22:18:09Z mitza $
// The following configuration file is designed to work for VxWorks
// 6.9 platforms using one of these compilers:
// 1) The GNU g++ compiler that is shipped with VxWorks 6.9
// 2) The Diab compiler that is shipped with VxWorks 6.9
#ifndef ACE_CONFIG_VXWORKS_6_9_H
#define ACE_CONFIG_VXWORKS_6_9_H
#include /**/ "ace/pre.h"
#if !defined (ACE_VXWORKS)
# define ACE_VXWORKS 0x690
#endif /* ! ACE_VXWORKS */
#define ACE_HAS_SSIZE_T
#include "ace/config-vxworks6.8.h"
#ifndef ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R
// already defined for earlier RTP versions
# define ACE_HAS_2_PARAM_ASCTIME_R_AND_CTIME_R 1
#endif
#if defined(__RTP__)
// bzero is in strings.h
# define ACE_HAS_STRINGS 1
#endif
#include /**/ "ace/post.h"
#endif /* ACE_CONFIG_VXWORKS_6_9_H */
|