Обсуждение: a code question

Поиск
Список
Период
Сортировка

a code question

От
"qiumingcheng"
Дата:
Hello, 
When I read the code, the following code may be wrong, please help to confirm:at following 1, why the calculation of the pointer is calculated twice, thank you very much.
Вложения

Re: a code question

От
David Rowley
Дата:
On Tue, 5 Apr 2022 at 17:42, qiumingcheng <qiumingcheng@aliyun.com> wrote:
> When I read the code, the following code may be wrong, please help to confirm:at following 1, why the calculation of
thepointer is calculated twice, thank you very much. 

/*
* Estimate number of hashtable entries we can have within maxbytes. This
* estimates the hash cost as sizeof(PagetableEntry), which is good enough
* for our purpose.  Also count an extra Pointer per entry for the arrays
* created during iteration readout.
*/

"arrays" is plural in the comment above. Maybe the comment would be
better to spell it out more clearly. I imagine it's talking about the
spages and schunks arrays which are created in tbm_begin_iterate().

David