diff options
Diffstat (limited to 'ace/Synch.h')
-rw-r--r-- | ace/Synch.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ace/Synch.h b/ace/Synch.h index 090cb83ef28..5616ae26c42 100644 --- a/ace/Synch.h +++ b/ace/Synch.h @@ -162,8 +162,9 @@ public: ~ACE_File_Lock (void); // Remove a File lock by releasing it and closing down the <handle_>. - int remove (void); - // Remove a File lock by releasing it and closing down the <handle_>. + int remove (int unlink_file = 1); + // Remove a File lock by releasing it and closing down the + // <handle_>. If <unlink_file> is non-0 then we unlink the file. int acquire (short whence = 0, off_t start = 0, off_t len = 1); // Note, for interface uniformity with other synchronization |