X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=junction%2FConcurrentMap_LeapFrog.h;h=389ce4088e145e2f5b631582083002ee6ce2b539;hb=c7fafdd7d1e574307901bb196685acf787ca23e8;hp=a9dc4a33369f61b15187999daac0802b417e4276;hpb=6a7fe65045a50f9830aa674fcacf16f4e580eaa2;p=junction.git diff --git a/junction/ConcurrentMap_LeapFrog.h b/junction/ConcurrentMap_LeapFrog.h index a9dc4a3..389ce40 100644 --- a/junction/ConcurrentMap_LeapFrog.h +++ b/junction/ConcurrentMap_LeapFrog.h @@ -251,7 +251,7 @@ public: // Lookup without creating a temporary Mutator. Value get(Key key) { Hash hash = KeyTraits::hash(key); - TURF_TRACE(ConcurrentMap_LeapFrog, 15, "[get] called", uptr(hash), 0); + TURF_TRACE(ConcurrentMap_LeapFrog, 15, "[get] called", uptr(this), uptr(hash)); for (;;) { typename Details::Table* table = m_root.load(turf::Consume); typename Details::Cell* cell = Details::find(hash, table);