Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
190 views

boost thread_group with callback

i would like to write a boost::thread_group. Assuming i understood correctly what callback in thread is i would like to apply it as well in my program. I found the following example: (thread_group ...
1
vote
1answer
148 views

every time creating new thread is being added to main ThreadGroup

I am creating many surface view instances to view some objects but one instance is created at a time and then surfaceDestroyed is called. but the thread I am creating every time on surfacecreated is ...
0
votes
2answers
109 views

JAVA: SecurityException on ThreadGroup.getParent()

I have some pretty boilerplate Java code that does a while loop with a tg.getParent() to get the root thread group. This has been working for several months on four different environments (one Windows ...
0
votes
2answers
527 views

Encapsulated boost thread_group. Questions about ids and synchronization

I´m using a class that encapsulates a thread_group, and have some questions about it class MyGroup{ private: boost::this_thread::id _id; boost::thread::thread_group group; int abc; ...
0
votes
5answers
445 views

Clustering using Threads in Java

I have a job that takes too long time in Java. So I want to divide this job into threads and run them. After the threads finishes their jobs, returns to my service and Service give them new jobs. ...