11-12-2012 05:59 PM
I am running 14 processes in parallel in TestStand, and each process will call a the "Write Text File" function occasionally.
Can one process's file write interrupt another one during mid-write, or do I need to put locks around each write?
Solved! Go to Solution.
11-13-2012 02:03 PM
If you are accessing the same file then lock is required.And that too when you are writing to it.
11-13-2012 04:49 PM
OK, thanks. I'll arrange it so that different files are accessed per thread.