diff options
author | William R. Otte <wotte@dre.vanderbilt.edu> | 2011-07-19 20:17:09 +0000 |
---|---|---|
committer | William R. Otte <wotte@dre.vanderbilt.edu> | 2011-07-19 20:17:09 +0000 |
commit | 80012f8bf8032f0c28e4e5ca02d4672370a25137 (patch) | |
tree | ea06d543ffc8e066ccfbaf96a8be8a7ca0e6461a /ACE/examples/APG/ThreadManagement/Async_Cancel.cpp | |
parent | 10d279d3172a275f5f53fb18d4a0945f589a7224 (diff) | |
download | ATCD-saic_android.tar.gz |
Tue Jul 19 20:15:51 UTC 2011 William R. Otte <wotte@dre.vanderbilt.edu>saic_android
* ace/config-android.h:
* examples/APG/ThreadManagement/Async_Cancel.cpp:
* examples/Service_Configurator/IPC-tests/client/local_dgram_client_test.cpp:
* examples/Service_Configurator/IPC-tests/server/Handle_L_Stream.inl:
* examples/Service_Configurator/IPC-tests/server/Handle_R_Stream.inl:
* examples/Service_Configurator/IPC-tests/server/Handle_Thr_Stream.cpp:
* examples/System_V_IPC/SV_Message_Queues/TMQ_Client.cpp:
* include/makeinclude/platform_android.GNU:
* tests/Logging_Strategy_Test.cpp:
* tests/Thread_Attrs_Test.cpp:
Various android fixes.
Diffstat (limited to 'ACE/examples/APG/ThreadManagement/Async_Cancel.cpp')
-rw-r--r-- | ACE/examples/APG/ThreadManagement/Async_Cancel.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ACE/examples/APG/ThreadManagement/Async_Cancel.cpp b/ACE/examples/APG/ThreadManagement/Async_Cancel.cpp index 842c7fa2bca..673a32eccac 100644 --- a/ACE/examples/APG/ThreadManagement/Async_Cancel.cpp +++ b/ACE/examples/APG/ThreadManagement/Async_Cancel.cpp @@ -29,6 +29,7 @@ public: { cancel_state new_state; +#ifndef ACE_LACKS_PTHREAD_CANCEL // Set the cancel state to asynchronous and enabled. new_state.cancelstate = PTHREAD_CANCEL_ENABLE; new_state.canceltype = PTHREAD_CANCEL_ASYNCHRONOUS; @@ -37,6 +38,13 @@ public: ACE_TEXT ("%p\n"), ACE_TEXT ("cancelstate")), -1); return 0; + +#else + + ACE_ERROR ((LM_ERROR, "Pthread_cancel is not supported on this platform.\n")); + return -1; + +#endif } }; // Listing 1 |