X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=sidebyside;f=inc%2FFIoFileLock.h;h=d9da37a3435bd645d563ea59020d0d0682aa87a6;hb=20597a73bc3098301ba91a48378f3ef009c3be96;hp=e781155277344861be4b669e164ce275b781d4ac;hpb=27f1388665067f69d5eb64e0cae6bb5f4250beec;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FIoFileLock.h b/inc/FIoFileLock.h index e781155..d9da37a 100644 --- a/inc/FIoFileLock.h +++ b/inc/FIoFileLock.h @@ -23,6 +23,8 @@ #ifndef _FIO_FILE_LOCK_H_ #define _FIO_FILE_LOCK_H_ +#include + namespace Tizen { namespace Io { @@ -35,12 +37,12 @@ namespace Tizen { namespace Io */ enum FileLockType { - FILE_LOCK_SHARED, /**< More than one process can hold a shared file lock on a file region @n + FILE_LOCK_SHARED, /**< The shared file lock @n More than one process can hold a shared file lock on a file region @n A shared lock prevents any other process from setting an exclusive lock on the file - region. */ - FILE_LOCK_EXCLUSIVE /**< Only one process can hold an exclusive lock on a file region @n + region */ + FILE_LOCK_EXCLUSIVE /**< The exclusive file lock @n Only one process can hold an exclusive lock on a file region @n An exclusive lock prevents any other process from setting both shared and exclusive - lock on the file region. */ + lock on the file region */ }; /**