This commit is contained in:
Chuck Rasbold 2008-04-28 08:08:12 -07:00
commit cf2288b223
23 changed files with 788 additions and 100 deletions

View file

@ -2229,6 +2229,8 @@ JRT_END
#ifndef PRODUCT
bool AdapterHandlerLibrary::contains(CodeBlob* b) {
if (_handlers == NULL) return false;
for (int i = 0 ; i < _handlers->length() ; i++) {
AdapterHandlerEntry* a = get_entry(i);
if ( a != NULL && b == CodeCache::find_blob(a->get_i2c_entry()) ) return true;