From f3c9c570e2051032ed173868204055a15d6d99ba Mon Sep 17 00:00:00 2001 From: bjeram Date: Fri, 12 Dec 2014 13:27:23 +0100 Subject: Update OS_NS_dlfcn.inl changed how is it checked for VxWorks version (using: (ACE_VXWORKS < 0x690)). --- ACE/ace/OS_NS_dlfcn.inl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ACE/ace/OS_NS_dlfcn.inl') diff --git a/ACE/ace/OS_NS_dlfcn.inl b/ACE/ace/OS_NS_dlfcn.inl index e10e5ca97fd..521df796647 100644 --- a/ACE/ace/OS_NS_dlfcn.inl +++ b/ACE/ace/OS_NS_dlfcn.inl @@ -256,7 +256,7 @@ ACE_OS::dlsym (ACE_SHLIB_HANDLE handle, // which resolves the most recently loaded symbols, which resolve // mostly what we want.. ACE_UNUSED_ARG (handle); - #if _WRS_VXWORKS_MAJOR < 6 || (_WRS_VXWORKS_MAJOR == 6 && _WRS_VXWORKS_MINOR < 9) +#if (ACE_VXWORKS < 0x690) SYM_TYPE symtype; char *value = 0; STATUS status; @@ -274,7 +274,7 @@ ACE_OS::dlsym (ACE_SHLIB_HANDLE handle, ACE_OSCALL (::symFind(sysSymTbl, &symbolDesc), int, -1, status); return status == OK ? reinterpret_cast (symbolDesc.value) : 0; -#endif +#endif /* (ACE_VXWORKS < 0x690) */ # else -- cgit v1.2.1