diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-08-24 23:12:46 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1998-08-24 23:12:46 +0000 |
commit | c913304d681724cad0083ab9ed5cc7c178c6362a (patch) | |
tree | fc312a4f187f2410094bf1c8f16413cd8166dcdf /tests | |
parent | 953f30c722712f96f26d9d112f1c484d056627a2 (diff) | |
download | ATCD-c913304d681724cad0083ab9ed5cc7c178c6362a.tar.gz |
*** empty log message ***
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); |