I have a question similar to This one .
But I want to implement this in Linux, using ACE framework. What is the way to do this
I have a question similar to This one . But I want to implement
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A little more information would help obtain a better answer:
The other question you mentioned made a very good point:
Depending on what you’ve setup in ACE, you can use interprocess communication from your main thread to your worker threads to tell them to stop, which they would pickup and handle on their next event check. Alternatively, you can use linux’s
select.Hope this points you in the right direction.