Add IPC sync result for SerialPort::Write()
[platform/framework/native/appfw.git] / inc / FIoFileLock.h
index e781155..d9da37a 100644 (file)
@@ -23,6 +23,8 @@
 #ifndef _FIO_FILE_LOCK_H_
 #define _FIO_FILE_LOCK_H_
 
+#include <FBaseObject.h>
+
 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 */
 };
 
 /**