What sync mechanism should I use to give exclusive access to the text file in boost? The file will likely be accessed by threads from only one process.
|
|
|
|
|
|
|
If you are sure it will only be accessed from one process, a read-write lock with file handles in thread local storage could be a solution. That would simulate the above with only one writer but several readers. |
||
|
|
|
|
I suppose it is acquire_file_lock
It is consistent with a non-boost implementation of a lock.
|
|||
|
|
