diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-10-25 15:33:21 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1996-10-25 15:33:21 +0000 |
commit | fbde9f5f6671cdbd90d223d9e4e71e495dda387a (patch) | |
tree | c651b0b4a975e3c3317824baf4989c2be9d60a5d /ace | |
parent | 52690c0006702affc804ae572a5680fb9c3f3256 (diff) | |
download | ATCD-fbde9f5f6671cdbd90d223d9e4e71e495dda387a.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace')
-rw-r--r-- | ace/config-vxworks5.2-g++.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/ace/config-vxworks5.2-g++.h b/ace/config-vxworks5.2-g++.h new file mode 100644 index 00000000000..78f13da0050 --- /dev/null +++ b/ace/config-vxworks5.2-g++.h @@ -0,0 +1,62 @@ +/* -*- C++ -*- */ +// $Id$ + +// The following configuration file is designed to work for VxWorks +// 5.2 platforms using the GNU g++ 2.7.2 compiler, without repo patch + +#if !defined (ACE_CONFIG_H) +#define ACE_CONFIG_H + +#define ACE_HAS_BROKEN_SENDMSG +#define ACE_HAS_BROKEN_WRITEV +#define ACE_HAS_CHARPTR_SOCKOPT +#define ACE_HAS_CONSISTENT_SIGNAL_PROTOTYPES +#define ACE_HAS_CPLUSPLUS_HEADERS +#define ACE_HAS_GNU_CSTRING_H +#define ACE_HAS_GREENHILLS_SOCKETS +#define ACE_HAS_MSG +#define ACE_HAS_MT_SAFE_SOCKETS +#define ACE_HAS_POSIX_NONBLOCK +#define ACE_HAS_POSIX_SEM +#define ACE_HAS_POSIX_TIME +#define ACE_HAS_SIG_ATOMIC_T +#define ACE_HAS_SIGINFO_T +#define ACE_HAS_SIGWAIT +#define ACE_HAS_THREADS +#define ACE_LACKS_MADVISE +#define ACE_LACKS_MALLOC_H +#define ACE_LACKS_MKTEMP +#define ACE_LACKS_MMAP +#define ACE_LACKS_MSYNC +#define ACE_LACKS_PARAM_H +#define ACE_LACKS_RLIMIT +#define ACE_LACKS_SBRK +#define ACE_LACKS_SEMBUF_T +#define ACE_LACKS_SIGINFO_H +#define ACE_LACKS_SI_ADDR +#define ACE_LACKS_SOCKETPAIR +#define ACE_LACKS_STATIC_DATA_MEMBER_TEMPLATES +#define ACE_LACKS_STRRECVFD +#define ACE_LACKS_SYSCALL +#define ACE_LACKS_SYSV_SHMEM +#define ACE_LACKS_UCONTEXT_H +#define ACE_LACKS_UTSNAME_T +#define ACE_MT_SAFE +#define ACE_TEMPLATES_REQUIRE_SOURCE +#define ACE_TEMPLATES_REQUIRE_SPECIALIZATION +#define SIGNAL_SAFE_OS_CALLS + +// Defines the page size of the system. +#define ACE_PAGE_SIZE 4096 + + +// vxWorks.h must be included before time.h, and key_t must be +// defined early also: these are here +// because Time_Value.h #includes ace/config.h, but not ace/OS.h +typedef int key_t; +#include <vxWorks.h> + + +#endif /* ACE_CONFIG_H */ + + |