Is there a simple way in the C language, using POSIX threads, to send all the file output of a program (e.g. fprintf...
) to a cpu core other than the one that is executing the code? I mean in such a way that the code keeps on flowing and does not need to wait for the file to have been written to continue.
My program does numerical integration and at every step of integration writes data to a file.
Thank you.