X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=inc%2FFIoFileLock.h;h=d9da37a3435bd645d563ea59020d0d0682aa87a6;hb=102d9124a6981de495cb23e8bd98c2de322960fb;hp=37f47e46530ca14178f4ba9c5e39ac1b2dd39955;hpb=84ae32fc9014edf1457554db60000885285034ff;p=platform%2Fframework%2Fnative%2Fappfw.git diff --git a/inc/FIoFileLock.h b/inc/FIoFileLock.h index 37f47e4..d9da37a 100644 --- a/inc/FIoFileLock.h +++ b/inc/FIoFileLock.h @@ -1,5 +1,4 @@ // -// Open Service Platform // Copyright (c) 2013 Samsung Electronics Co., Ltd. // // Licensed under the Apache License, Version 2.0 (the License); @@ -24,6 +23,8 @@ #ifndef _FIO_FILE_LOCK_H_ #define _FIO_FILE_LOCK_H_ +#include + namespace Tizen { namespace Io { @@ -36,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 */ }; /**