diff options
author | Sage Weil <sage@newdream.net> | 2008-10-31 15:01:09 -0700 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2008-10-31 16:51:50 -0700 |
commit | 1a51eb97d5266fe9fd7450669887dca077ebfb58 (patch) | |
tree | 2eec877a50d5e89de981cbc86b0386357b9db0d3 /src/streamtest.cc | |
parent | bc55688623b18df83634df27756e4eaf020edaba (diff) | |
download | ceph-1a51eb97d5266fe9fd7450669887dca077ebfb58.tar.gz |
lockdep: annotate Mutex declarations
Diffstat (limited to 'src/streamtest.cc')
-rw-r--r-- | src/streamtest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/streamtest.cc b/src/streamtest.cc index bfe255c9ece..e808965af70 100644 --- a/src/streamtest.cc +++ b/src/streamtest.cc @@ -26,7 +26,7 @@ struct io { }; map<off_t,io> writes; -Mutex lock; +Mutex lock("streamtest.cc lock"); void pr(off_t off) |