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
hxcpp Threads are causing bus errors an 64bit (os) RaspberryPi .
forcing HXCPP_ALIGN_ALLOC solves the problem.
quoting Hugh: the better way would be to replace the pthread_cond_init calls with a malloc + a pthread_cond_init call and the pthread_cond_destroy calls with a pthread_cond_destroy + free calls. Same for pthread_mutex_t. In Thread.h and Thread.cpp
The text was updated successfully, but these errors were encountered:
hxcpp Threads are causing bus errors an 64bit (os) RaspberryPi .
forcing HXCPP_ALIGN_ALLOC solves the problem.
quoting Hugh:
the better way would be to replace the pthread_cond_init calls with a malloc + a pthread_cond_init call and the pthread_cond_destroy calls with a pthread_cond_destroy + free calls. Same for pthread_mutex_t. In Thread.h and Thread.cpp
The text was updated successfully, but these errors were encountered: