Topic: any lib for multiplateform multithreading / multiprocessing ?
Is there a way to create/manage multiple thread working on both windows and linux ?
if not, what about multiprocessing ? i was thinking of MPI but it seems to be a pain to make it works on both plateform.
Any other idea/solution/possibility ?
I have some code that need to continuously do tons of computation while still responding to command from stdin.
i was even considering unix socket to communicate between multi process but... windows....
The best case scenario would be phtread of course. But i would need to use cygwin on windows to handle it.
I don't even know how to use pthread from fortran actually.