> > track_pre_thread_ll_exit, which is notified just before the new thread > > exits, that is, after it has made its last memory reference. > > What's the "ll_" mean -- low-level? Could it be removed?
Yes, low-level. These events mark the extreme boundaries of a thread's lifespan, from the kernel's point of view: ll_create is before it has executed its first instruction and ll_exit after it has executed it's last. Reason I'd like to keep the ll_ part is that it makes it clear these events are not to do with pthread_create or pthread_exit/pthread_join, which are a higher level abstraction synthesised by libpthread. J ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ Valgrind-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/valgrind-developers
