summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormcorino <mcorino@users.noreply.github.com>2006-11-06 14:17:09 +0000
committermcorino <mcorino@users.noreply.github.com>2006-11-06 14:17:09 +0000
commit38c03f0c394b61ee1d08d1688b33966bedbac98f (patch)
treeac122d55f03ee22d5564e7c1e301b4ccbf52d0b1
parent66b78a1ec32b4016399d69e29a1a32226af87f79 (diff)
downloadATCD-38c03f0c394b61ee1d08d1688b33966bedbac98f.tar.gz
ChangeLogTag: Mon Nov 06 14:14:10 UTC 2006 Martin Corino <mcorino@remedy.nl>
-rw-r--r--ACE/ChangeLog22
-rw-r--r--ACE/ace/config-vxworks6.3.h4
2 files changed, 18 insertions, 8 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 99183bc265e..2755b465ddc 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,16 +1,22 @@
+Mon Nov 06 14:14:10 UTC 2006 Martin Corino <mcorino@remedy.nl>
+
+ * ace/config-vxworks6.3.h:
+
+ Fixed incorrect definition of IOV_MAX.
+
Mon Nov 6 13:08:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
- * ace/config-sunos5.5.h:
- Added ACE_HAS_GETRUSAGE, thanks to Michael Klein
- <michael dot klein at fazi dot de> for reporting that SunOS has
- this method, fixes bugzilla 2694.
+ * ace/config-sunos5.5.h:
+ Added ACE_HAS_GETRUSAGE, thanks to Michael Klein
+ <michael dot klein at fazi dot de> for reporting that SunOS has
+ this method, fixes bugzilla 2694.
Mon Nov 6 12:59:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
- * examples/Service_Configurator/Misc/main.cpp:
- * examples/Service_Configurator/Misc/Service_Configurator_Misc.mpc:
- * examples/Service_Configurator/Misc/svc.conf1
- Fixed shared library name, make working for embedded platforms.
+ * examples/Service_Configurator/Misc/main.cpp:
+ * examples/Service_Configurator/Misc/Service_Configurator_Misc.mpc:
+ * examples/Service_Configurator/Misc/svc.conf1
+ Fixed shared library name, make working for embedded platforms.
Thanks to Abdul Sowayan <abdullah dot sowayan at lmco dot com>
for reporting this, fixes bugzilla bug 2698
diff --git a/ACE/ace/config-vxworks6.3.h b/ACE/ace/config-vxworks6.3.h
index c31701231a9..0cd0d9fa800 100644
--- a/ACE/ace/config-vxworks6.3.h
+++ b/ACE/ace/config-vxworks6.3.h
@@ -176,6 +176,10 @@
#define ACE_SIZEOF_WCHAR 2
#define ACE_HAS_SHM_OPEN
#define ACE_HAS_AIO_CALLS
+ // VxWorks seems to either not define this or define as zero up till now
+ #if !defined (IOV_MAX) || (IOV_MAX == 0)
+ #define ACE_IOV_MAX 16
+ #endif
#else
// We are building for kernel mode
#define ACE_LACKS_SUSECONDS_T