fixed off by one error
This commit was SVN r25369.
Этот коммит содержится в:
родитель
72f731f25f
Коммит
05114ffb51
@ -148,7 +148,7 @@ static inline uintptr_t get_mask (uintptr_t x)
|
|||||||
x |= (x >> 8);
|
x |= (x >> 8);
|
||||||
x |= (x >> 16);
|
x |= (x >> 16);
|
||||||
x |= (x >> 32);
|
x |= (x >> 32);
|
||||||
return (x >> 1) + 1;
|
return (x >> 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* look up the remote pointer in the peer rcache and attach if
|
/* look up the remote pointer in the peer rcache and attach if
|
||||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user