diff options
author | msmit <msmit@remedy.nl> | 2009-04-20 09:18:43 +0000 |
---|---|---|
committer | msmit <msmit@remedy.nl> | 2009-04-20 09:18:43 +0000 |
commit | 8d6958457626dab5e1127b466e613677d951a3a2 (patch) | |
tree | bea99b29a29fc6bfcb82cdbeef8172ab8e7f63f1 /ACE/ace/OS_NS_sys_socket.h | |
parent | a049dec25603b768ecc84a901bc4cd1a52fe9e5a (diff) | |
download | ATCD-8d6958457626dab5e1127b466e613677d951a3a2.tar.gz |
Mon Apr 20 10:17:32 UTC 2009 Marcel Smit <msmit@remedy.nl>
* ace/Basic_Types.h:
* ace/config-WinCE.h:
* ace/OS_NS_stropts.h:
* ace/OS_NS_sys_socket.h:
* ace/OS_NS_Thread.cpp:
Removed WinCE support for versions < 5.0.
* ace/config-win32-cegcc.h:
Removed temporary defines.
* ace/config-win32-common.h:
Replaced UNDER_CE with _WIN32_WCE.
* ace/OS_main.cpp:
* ace/OS_main.h:
Removed CE gcc compiler warning by
adding destructor.
* ace/OS_NS_Thread.inl:
Removed WinCE support for versions before 5.0.
Added ACE_LACKS_CE_THREAD_PRIORITY define in order
to compile on CE gcc.
* ace/Process.cpp:
Removed CE gcc compiler warning by
using ACE_UNUSED_ARG.
* ace/Registry.cpp:
* ace/Registry.h:
Removed CE gcc compiler warning by
adding destructor.
Removed CE gcc compiler warning by
using ACE_UNUSED_ARG.
* ace/SV_Semaphore_Simple.cpp:
Removed pragma's for CE gcc compiler. Removed
check on ACE_WIN64 define.
* include/makeinclude/platform_cegcc.GNU:
Default platform macros for CE gcc compiler.
* include/makeinclude/platform_gnuwin32_common.GNU:
Added support for CE gcc compiler.
Diffstat (limited to 'ACE/ace/OS_NS_sys_socket.h')
-rw-r--r-- | ACE/ace/OS_NS_sys_socket.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ACE/ace/OS_NS_sys_socket.h b/ACE/ace/OS_NS_sys_socket.h index e1fcaa3c7c7..fb5a47a59a0 100644 --- a/ACE/ace/OS_NS_sys_socket.h +++ b/ACE/ace/OS_NS_sys_socket.h @@ -80,7 +80,6 @@ namespace ACE_OS struct sockaddr *addr, int *addrlen); -#if !(defined (ACE_HAS_WINCE) && (UNDER_CE < 500)) /** * QoS-enabled @c accept, which passes @a qos_params to @c accept. If * the OS platform doesn't support QoS-enabled @c accept then the @@ -91,7 +90,6 @@ namespace ACE_OS struct sockaddr *addr, int *addrlen, const ACE_Accept_QoS_Params &qos_params); -#endif /* !(defined (ACE_HAS_WINCE) && (UNDER_CE < 500)) */ ACE_NAMESPACE_INLINE_FUNCTION int bind (ACE_HANDLE s, @@ -108,7 +106,6 @@ namespace ACE_OS struct sockaddr *addr, int addrlen); -#if !(defined (ACE_HAS_WINCE) && (UNDER_CE < 500)) /** * QoS-enabled @c connect, which passes @a qos_params to @c connect. * If the OS platform doesn't support QoS-enabled @c connect then the @@ -119,7 +116,6 @@ namespace ACE_OS const sockaddr *addr, int addrlen, const ACE_QoS_Params &qos_params); -#endif /* !(defined (ACE_HAS_WINCE) && (UNDER_CE < 500)) */ /// Retrieve information about available transport protocols /// installed on the local machine. Windows specific... @@ -144,14 +140,12 @@ namespace ACE_OS char *optval, int *optlen); -#if !(defined (ACE_HAS_WINCE) && (UNDER_CE < 500)) /// Joins a leaf node into a QoS-enabled multi-point session. extern ACE_Export ACE_HANDLE join_leaf (ACE_HANDLE socket, const sockaddr *name, int namelen, const ACE_QoS_Params &qos_params); -#endif /* !(defined (ACE_HAS_WINCE) && (UNDER_CE < 500)) */ ACE_NAMESPACE_INLINE_FUNCTION int listen (ACE_HANDLE handle, |