repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Changes to attempt to silence bcc64x
[ACE_TAO.git]
/
ACE
/
ace
/
FILE.inl
blob
69c3e0cd23182e299e95f549983034e718cd1cf3
1
// -*- C++ -*-
2
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
3
4
ACE_INLINE int
5
ACE_FILE::disable (int signum) const
6
{
7
#if defined (ACE_WIN32)
8
ACE_UNUSED_ARG (signum) ;
9
return 0 ;
10
#else /* ACE_WIN32 */
11
return ACE_IO_SAP::disable (signum) ;
12
#endif /* ACE_WIN32 */
13
}
14
15
ACE_END_VERSIONED_NAMESPACE_DECL