ported double tracking from TC

This commit is contained in:
mikx
2020-10-30 23:45:46 -04:00
commit 44b1f31c23
4914 changed files with 4961129 additions and 0 deletions

15
deps/acelite/ace/DEV.inl vendored Normal file
View File

@@ -0,0 +1,15 @@
// -*- C++ -*-
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE int
ACE_DEV::disable (int signum) const
{
#if defined (ACE_WIN32)
ACE_UNUSED_ARG (signum) ;
return 0 ;
#else /* ACE_WIN32 */
return ACE_IO_SAP::disable (signum) ;
#endif /* ACE_WIN32 */
}
ACE_END_VERSIONED_NAMESPACE_DECL