On Tuesday 28 October 2008, Felix Schmidt wrote: > the client program is multithreaded. > valgrind serialize the execution of the client program (code) > > - a thread is running > - a hook comes up > - the valgrind tool makes a decision, wether the thread can run along or > another thread will resume its work > > how can i tell the valgrind scheduler to stop the current thread and > start the next one?
You can't. The kernel chooses which thread runs next, not Valgrind. The only thing Valgrind does is to guarantee that only one thread runs at once. But it does not make scheduling decisions. J ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ Valgrind-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/valgrind-users
