add some notes in oslo-lock script

Change-Id: I8008837c9fb28f65b5b0e89e3482318e233e9381
This commit is contained in:
Kun Huang 2015-11-03 21:54:09 +08:00
parent 5646d51268
commit 3cacb3cb76
1 changed files with 2 additions and 0 deletions

View File

@ -1,8 +1,10 @@
#!/usr/bin/stap
# this script is tested locally only, because community CI has not been set up now
global count = 0;
global old_count = 0;
probe python.function.entry {
# line number here should not be necessary, please see https://bugs.launchpad.net/scalpels/+bug/1512687
if ((funcname == "lock") && isinstr(filename, "oslo_concurrency/lockutils.py") && (lineno == 163)) {
count = count + 1;
}