/usr/include/ace/config-vxworks6.9.h is in libace-dev 6.3.3+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 34 35 36 37 38 39 40 41 | //* -*- C++ -*- */
// 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
# if defined ACE_HAS_PTHREADS
# define ACE_HAS_RECURSIVE_THR_EXIT_SEMANTICS
# endif
#endif
// As of VxWorks 6.9, the networking APIs have been made conformant with
// the POSIX sockets prototypes. See IEEE Std 1003.1 and Section 6.3.3 Socket
// Functional Interface in the VxWorks reference document -
// wr_net_stack_programmers_guide_vol3_6.9.pdf.
#if defined (ACE_HAS_BROKEN_ACCEPT_ADDR)
# undef ACE_HAS_BROKEN_ACCEPT_ADDR
#endif
#include /**/ "ace/post.h"
#endif /* ACE_CONFIG_VXWORKS_6_9_H */
|