- Edited
So I'm testing out building a PD project with Eclipse, using master branch.
In default_libpd_render.cpp (line 289) we have:
#ifdef PD_THREADED_IO
void fdLoop(void* arg){
while(!gShouldStop){
sys_doio();
usleep(3000);
}
}
#endif /* PD_THREADED_IO */
at line 170:
#ifdef PD_THREADED_IO
EXTERN void sys_doio(t_pdinstance* pd_that);
EXTERN void sys_dontmanageio(int status);
#endif
At line 64:
#define PD_THEADED_IO
So the call to sys_doio() is missing the parameter.