Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ACE を使用して (Linux 上で) マルチスレッド プロセスを作成したいと考えています。c++ でスレッドを実装する際の ACE_Task と ACE_thread_t の使用の違いは何ですか?
ACE_thread_t は実際には低レベルのハンドルです。ACE を使用してマルチスレッド アプリケーションを実装するには、ACE_Task または ACE_Task_Base から派生するクラスを実装します。これを行う方法の多くの例については、ACE_wrappers/examples/Threads または ACE_wrappers/tests を参照してください。