diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Aio_Platform_Test.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/Aio_Platform_Test.cpp b/tests/Aio_Platform_Test.cpp index 3e386ee5a92..26c9e2f9ba4 100644 --- a/tests/Aio_Platform_Test.cpp +++ b/tests/Aio_Platform_Test.cpp @@ -32,10 +32,11 @@ int have_asynchio (void); #if defined (ACE_HAS_AIO_CALLS) static ACE_HANDLE file_handle = ACE_INVALID_HANDLE; -ACE_Message_Block mb1 (BUFSIZ + 1); -ACE_Message_Block mb2 (BUFSIZ + 1); -aiocb aiocb1, aiocb2; -sigset_t completion_signal; +static ACE_Message_Block mb1 (BUFSIZ + 1); +static ACE_Message_Block mb2 (BUFSIZ + 1); +static aiocb aiocb1; +static aiocb aiocb2; +static sigset_t completion_signal; // For testing the <aio> stuff. int test_aio_calls (void); |