Added remarks for fd 90/45890/1
authorChangyeon Lee <cyeon.lee@samsung.com>
Thu, 6 Aug 2015 08:30:20 +0000 (17:30 +0900)
committerSooChan Lim <sc1.lim@samsung.com>
Wed, 12 Aug 2015 08:03:08 +0000 (17:03 +0900)
Change-Id: Ibedce273256d35eb250fee21cc2f51cb9e55b27e

src/tbm_bufmgr.h
src/tbm_bufmgr_backend.h

index f0f6ae9..0191d9d 100644 (file)
@@ -512,6 +512,7 @@ tbm_key  tbm_bo_export     (tbm_bo bo);
  * @brief Exports the buffer object by fd.
  * @details The tbm_bo can be exported to the anther process with the unique fd associated with the the tbm_bo.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @remarks You must release the fd using close().
  * @param[in] bo : the buffer object
  * @return fd associated with the buffer object
  * @retval #tbm_fd
@@ -584,8 +585,9 @@ tbm_bo        tbm_bo_import     (tbm_bufmgr bufmgr, tbm_key key);
  * @brief Imports the buffer object associated with the fd.
  * @details The reference count of the tbm_bo is 1.
  * @since_tizen @if MOBILE 2.3 @elseif WEARABLE 2.3.1 @endif
+ * @remarks You must release the fd using close().
  * @param[in] bufmgr : the buffer manager
- * @param[in] fd : the fd associated with the buffer object
+ * @parak[in] fd : the fd associated with the buffer object
  * @return a buffer object
  * @retval #tbm_bo
  * @see tbm_bo_export_fd()
index 6e67133..ef10e9d 100644 (file)
@@ -238,6 +238,7 @@ struct _tbm_bufmgr_backend
 
     /**
     * @brief import the buffer object associated with the prime fd.
+    * @remarks tbm_fd must be free by user.
     * @param[in] bo : the buffer object
     * @param[in] fd : the prime fd associated with the buffer object
     * @return pointer of the bo private.
@@ -246,6 +247,7 @@ struct _tbm_bufmgr_backend
 
     /**
     * @brief export the buffer object
+    * @remarks tbm_fd must be free by user.
     * @param[in] bo : the buffer object
     * @return tbm_fd associated with the buffer object
     */