You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the I don't really care category, but TSAN complained about GDALGetCacheMax64(). It doesn't like the bool check: if( !bCacheMaxInitialized ). I don't think that two threads getting into this code would really be a big deal. This would easily solve with call_once, but this would be the first use of call_once in GDAL. But maybe it's not so easy since there interaction in GDALSetCacheMax64() for bCacheMaxInitialized
Super low priority...
In the I don't really care category, but TSAN complained about
GDALGetCacheMax64()
. It doesn't like the bool check:if( !bCacheMaxInitialized )
. I don't think that two threads getting into this code would really be a big deal. This would easily solve withcall_once
, but this would be the first use of call_once in GDAL. But maybe it's not so easy since there interaction inGDALSetCacheMax64()
forbCacheMaxInitialized
https://en.cppreference.com/w/cpp/thread/call_once
The text was updated successfully, but these errors were encountered: