Changeset 1915
- Timestamp:
- 04/11/2007 14:45:05 (14 months ago)
- Files:
-
- 1 modified
-
box/trunk/lib/common/NamedLock.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
box/trunk/lib/common/NamedLock.cpp
r456 r1915 60 60 // Name: NamedLock::TryAndGetLock(const char *, int) 61 61 // Purpose: Trys to get a lock on the name in the file system. 62 // IMPORTANT NOTE: If a file exists with this name, it will be deleted.62 // IMPORTANT NOTE: If a file exists with this name, it will be deleted. 63 63 // Created: 2003/08/28 64 64 // … … 94 94 if(fd == -1) 95 95 { 96 BOX_WARNING("Failed to open lockfile: " << Filename); 96 97 THROW_EXCEPTION(CommonException, OSFileError) 97 98 }
