summaryrefslogtreecommitdiff
path: root/ace/OS.h
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-09-17 17:08:23 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-09-17 17:08:23 +0000
commitf8d813340a39f07fb8e162e01f14772ae37be3d3 (patch)
tree9b2d420bdef6b4d7480953fb047ff80e3441fa45 /ace/OS.h
parent21f55a6274b56b7e48a302c73dcab7f94887cbb8 (diff)
downloadATCD-f8d813340a39f07fb8e162e01f14772ae37be3d3.tar.gz
.
Diffstat (limited to 'ace/OS.h')
-rw-r--r--ace/OS.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/ace/OS.h b/ace/OS.h
index 89c547d9919..8b4df52ebad 100644
--- a/ace/OS.h
+++ b/ace/OS.h
@@ -3850,13 +3850,14 @@ union semun
// Create some useful typedefs.
typedef const char **SYS_SIGLIST;
+typedef void *(*ACE_THR_FUNC)(void *);
// This is for C++ static methods.
# if defined (VXWORKS)
-typedef FUNCPTR ACE_THR_FUNC; // where typedef int (*FUNCPTR) (...)
+typedef FUNCPTR ACE_THR_FUNC_INTERNAL; // where typedef int (*FUNCPTR) (...)
# elif defined (ACE_PSOS)
-typedef void (*ACE_THR_FUNC)(void *);
+typedef void (*ACE_THR_FUNC_INTERNAL)(void *);
# else
-typedef void *(*ACE_THR_FUNC)(void *);
+typedef void *(*ACE_THR_FUNC_INTERNAL)(void *);
# endif /* VXWORKS */
extern "C" {