summaryrefslogtreecommitdiff
path: root/ace/POSIX_Proactor.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-08-16 18:07:12 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-08-16 18:07:12 +0000
commit130d3342fa7dcaeb2c7fdf9074daec3fa2824106 (patch)
treeb33150411b6066c64a40fa95edc5c525840c9190 /ace/POSIX_Proactor.cpp
parent4a9bd23b95dc247869de4809135b799bc7d26025 (diff)
downloadATCD-130d3342fa7dcaeb2c7fdf9074daec3fa2824106.tar.gz
ChangeLogTag:Thu Aug 16 10:34:20 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
Diffstat (limited to 'ace/POSIX_Proactor.cpp')
-rw-r--r--ace/POSIX_Proactor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/POSIX_Proactor.cpp b/ace/POSIX_Proactor.cpp
index aa15025eac2..a3480aa01d7 100644
--- a/ace/POSIX_Proactor.cpp
+++ b/ace/POSIX_Proactor.cpp
@@ -1699,10 +1699,10 @@ ACE_POSIX_SIG_Proactor::allocate_aio_slot (ACE_POSIX_Asynch_Result *result)
// store index!!, not pointer in signal info
result->aio_sigevent.sigev_notify = SIGEV_SIGNAL;
result->aio_sigevent.sigev_signo = result->signal_number ();
-#ifdef (__FreeBSD__)
- result->aio_sigevent.sigev_value.sival_int = retval;
-#else
+#if defined (__FreeBSD__)
result->aio_sigevent.sigev_value.sigval_int = retval;
+#else
+ result->aio_sigevent.sigev_value.sival_int = retval;
#endif /* __FreeBSD__ */
return retval;