1

I want to write a multi thread process (on linux) using ACE. What is the difference between using ACE_Task and ACE_thread_t when implementing threads in c++

Shay
  • 633
  • 2
  • 11
  • 27

1 Answers1

2

ACE_thread_t is really a low level handle. For implementing a multi threaded application using ACE implement a class that you derive from ACE_Task or ACE_Task_Base. See ACE_wrappers/examples/Threads or ACE_wrappers/tests for a lot of examples how to do this.

Johnny Willemsen
  • 2,942
  • 1
  • 14
  • 16