I have a visualization application that is in C++ and julia is providing the data.
I want to be able to invoke the visualization application and have julia call it and then move on.
Right now, the visualization application (written in Qt) runs and julia waits for it to exit even though it returns nothing.
I tried using remotecall to the ccall function but it still waited on exit from the visualization tool.
Is there a way to call the c function and have julia move on?
Either through multi threading or telling julia not to wait on the result?