summaryrefslogtreecommitdiff
path: root/ace/Flag_Manip.i
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-05-17 00:07:13 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-05-17 00:07:13 +0000
commitd0f1f75fcadd38301742ce455842b85a37e1c85e (patch)
tree3776502524231daa11360d0d113f6df04c45493b /ace/Flag_Manip.i
parent442da99580dec27d45306c9ccdfbc1c0d05e7030 (diff)
downloadATCD-d0f1f75fcadd38301742ce455842b85a37e1c85e.tar.gz
This commit was manufactured by cvs2svn to create branch 'jeremy'.jeremy
Diffstat (limited to 'ace/Flag_Manip.i')
-rw-r--r--ace/Flag_Manip.i20
1 files changed, 0 insertions, 20 deletions
diff --git a/ace/Flag_Manip.i b/ace/Flag_Manip.i
deleted file mode 100644
index b041e1f19d8..00000000000
--- a/ace/Flag_Manip.i
+++ /dev/null
@@ -1,20 +0,0 @@
-/* -*- C++ -*- */
-// $Id$
-
-// Return flags currently associated with handle.
-
-ASYS_INLINE int
-ACE_Flag_Manip::get_flags (ACE_HANDLE handle)
-{
- ACE_TRACE ("ACE_Flag_Manip::get_flags");
-
-#if defined (ACE_LACKS_FCNTL)
- // ACE_OS::fcntl is not supported, e.g., on VxWorks. It
- // would be better to store ACE's notion of the flags
- // associated with the handle, but this works for now.
- ACE_UNUSED_ARG (handle);
- return 0;
-#else
- return ACE_OS::fcntl (handle, F_GETFL, 0);
-#endif /* ACE_LACKS_FCNTL */
-}