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
-- local hdf5 = require('hdf5')
local threads = require 'threads'
threadPool = threads.Threads(3, function(threadid) require('hdf5') end )
-- threadPool = threads.Threads(3)
for i = 1, 10 do
threadPool:addjob(function() local a = hdf5.open(i .. '.hdf5','w'); a:close() end )
end
threadPool:synchronize()
threadPool:terminate()
The text was updated successfully, but these errors were encountered:
Hi,
How to solve this segmentation fault? Thanks
The text was updated successfully, but these errors were encountered: