Hi
I have several threads that them write into same binary file but each thread writes a specific range of file and the ranges is not overlapped.
For example:
thread #1 byte 0 to 100
thread #2 byte 101 to 200
ans so on...
Now how I implement it, do I need use mutex? and for the file handle can I simply share file handle between threads or should use DublicateHandle?
Thanks