This is the mail archive of the systemtap@sourceware.org mailing list for the systemtap project.
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
Other format: | [Raw text] |
I even did a tapset for most pthread functions inside NPTL ('probe pthread.create').
probe pthread.create = process(...).mark(...)!, process(...).function(...) { ... }
It worked fine, but the overhead was causing measurements errors (too slow == higher contention probability). It was clear that I had to use static markers, all I had to do was patch glibc/nptl and voila.
Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
---|---|---|
Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |