Search code examples
pthreadscloud

Run threads across multiple computers by pthread?


My question is how to run a multi-threaded program in C by pthread across multiple computers? Is it possible?


Solution

  • Running program across multiple computers might not be possible with multi-threading try using multiple processes as @goldenmean has suggested.

    PS:You can find my tutorials online this type of application can be easily done using MPI.