summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Haitzler <raster@rasterman.com>2012-04-12 06:28:55 +0000
committerCarsten Haitzler <raster@rasterman.com>2012-04-12 06:28:55 +0000
commit54b66615f2d3d7df09ce300abbe297d03bff631e (patch)
tree0ddaece61cfdc59a7d42b8e407725cbe5b35e105
parent6127293402a43e118f509c25abb7340b4cb11530 (diff)
downloadeet-54b66615f2d3d7df09ce300abbe297d03bff631e.tar.gz
add docs explaining the internal cache on close for onefang.
SVN revision: 70118
-rw-r--r--src/lib/Eet.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/Eet.h b/src/lib/Eet.h
index 38b40a7..10d94f5 100644
--- a/src/lib/Eet.h
+++ b/src/lib/Eet.h
@@ -585,12 +585,16 @@ eet_mode_get(Eet_File *ef);
*
* This function will flush any pending writes to disk if the eet file
* was opened for write, and free all data associated with the file handle
- * and file, and close the file.
+ * and file, and close the file. If it was opened for read (or read/write),
+ * the file handle may still be held open internally for caching purposes.
+ * To flush speuclatively held eet file handles use eet_clearcache().
*
* If the eet file handle is not valid nothing will be done.
*
* @since 1.0.0
* @ingroup Eet_File_Group
+ *
+ * @see eet_clearcache()
*/
EAPI Eet_Error
eet_close(Eet_File *ef);