On 10/30/2015 09:26 PM, Vladimir Sementsov-Ogievskiy wrote:
logic is changed: in old version gethugepagesize on statfs error generates exit(1) in new it returns getpagesize() in this case (through fd_getpagesize) (I think, fd_getpagesize should be fixed to handle error)
Indeed. I will let fd_getpagesize() return 0 if statfs is failed, then the caller handle the error properly.
also, in new version for windows we have getpagesize(), when in old version there was no difference (how did it work?). May be it's ok, but should be mentioned in commit message
Windows did not support file hugepage, so it will return normal page for this case. And this interface has not been used on windows so far. I will document it in the commit message as your suggestion.