Create command line tools for getting managing mutual exclusion between Unix / Linux processes on the same machine. This should be easy be an easy application of Unix IPC.
Motivated by trying to reduce the IO churn that "make -j" occasionally causes: only allow one process in the IO heavy section at a time.
2 comments :
flock(1)?
Thanks. I was not aware of this; it may provide enough rope.
Post a Comment