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
I am using threads.Mutex for creating a mutex object & later use the same for lock/unlock.
I have stored the mutex as :
data_info.my_mutex = threads.Mutex()
In another function(which has data_info as argument) this mutex is used to get a lock on it.
data_info.my_mutex:lock()
While executing I get below error:
FATAL THREAD PANIC: (addjob) /root/torch/install/share/lua/5.1/torch/File.lua:141: Unwritable object at <?>.1.turbo_mutex
Am I missing something?
The text was updated successfully, but these errors were encountered:
Hello,
I am using threads.Mutex for creating a mutex object & later use the same for lock/unlock.
I have stored the mutex as :
In another function(which has data_info as argument) this mutex is used to get a lock on it.
data_info.my_mutex:lock()
While executing I get below error:
FATAL THREAD PANIC: (addjob) /root/torch/install/share/lua/5.1/torch/File.lua:141: Unwritable object at <?>.1.turbo_mutex
Am I missing something?
The text was updated successfully, but these errors were encountered: