summaryrefslogtreecommitdiff
path: root/ACE/ace/OS_NS_sys_utsname.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2009-04-17 14:04:36 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2009-04-17 14:04:36 +0000
commit8d7f74b016c96d7da38ec68d3eec5a49ceb96f1f (patch)
treefb6f714939d1cb6e6e21413f6b69dbdebbdeafaa /ACE/ace/OS_NS_sys_utsname.cpp
parent8fc27bfeea6d99b83af4e6a1e9a6afd77c68603a (diff)
downloadATCD-8d7f74b016c96d7da38ec68d3eec5a49ceb96f1f.tar.gz
Fri Apr 17 15:03:32 UTC 2009 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Atomic_Op.{h,inl}: Added support for VxWorks vxAtomicLib. If you want to use that library add ACE_HAS_VXATOMICLIB to your config.h file * ace/config-vxworks6.4.h: VxWorks 6.4 has cpuset_t and taskCpuAffinitySet * ace/os_include/os_sched.h: VxWorks has cpuset_t * ace/OS_NS_sys_mman.inl: Updated VxWorks version checks * ace/OS_NS_sys_utsname.cpp: const change * ace/OS_NS_Thread.cpp: Added support for taskCpuAffinitySet * ace/Sock_Connect.cpp: Changed the checks for VxWorks to correctly detect which implementation of get_ip_interfaces we have to use * rpmbuild/ace-tao-orbsvcs-daemon.patch: This patch doesn't work anymore with svn head, if this is a real issue, it has to be addressed in the real code and not with a patch. This should already be possible with the -ORBDeamon flag * rpmbuild/ace-tao-ciao.spec: Don't apply ace-tao-orbsvcs-daemon.patch, fixed a small provides bug
Diffstat (limited to 'ACE/ace/OS_NS_sys_utsname.cpp')
-rw-r--r--ACE/ace/OS_NS_sys_utsname.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACE/ace/OS_NS_sys_utsname.cpp b/ACE/ace/OS_NS_sys_utsname.cpp
index 77fbf50faf8..76596773579 100644
--- a/ACE/ace/OS_NS_sys_utsname.cpp
+++ b/ACE/ace/OS_NS_sys_utsname.cpp
@@ -213,7 +213,7 @@ ACE_OS::uname (ACE_utsname *name)
# endif /* ACE_LACKS_HOSTNAME */
#elif defined (ACE_VXWORKS)
- size_t maxnamelen = sizeof name->nodename;
+ size_t const maxnamelen = sizeof name->nodename;
ACE_OS::strcpy (name->sysname, "VxWorks");
ACE_OS::strcpy (name->release, kernelVersion());
ACE_OS::strcpy (name->version, sysBspRev ());