efl: add eio_eet_sync symbols

Patch by Jérémy Zurcher <jeremy@asynk.ch>.


SVN revision: 82025
This commit is contained in:
Cedric BAIL 2013-01-03 00:39:18 +00:00
parent 83574d3ec3
commit ef9ad2032b
5 changed files with 16 additions and 1 deletions

View File

@ -204,6 +204,7 @@ Mikael SANS <sans.mikael@gmail.com>
Mike Blumenkrantz (zmike/discomfitor) <michael.blumenkrantz@gmail.com>
Jérôme Pinot <ngc891@gmail.com>
Daniel Willmann <d.willmann@samsung.com>
Jérémy Zurcher <jeremy@asynk.ch>
EDBus

View File

@ -1,3 +1,7 @@
2013-01-03 Jérémy Zurcher
* Add eio_eet_sync symbols.
2013-01-02 Carsten Haitzler (The Rasterman)
* Fixed evas_software_xlib_x_write_mask_line() issue - it was

1
NEWS
View File

@ -48,6 +48,7 @@ Additions:
eina_xattr_fd_copy()
* Added eina_file_copy()
* Add eet_map.
* Add eio_eet_sync symbols.
Deprecations:
* ecore_x:

View File

@ -1018,7 +1018,7 @@ EAPI Eio_File *eio_eet_close(Eet_File *ef,
* @param data Unmodified user data passed to callbacks
* @return NULL in case of a failure.
*
* This function will call eet_flush() from another thread. As long as the done_cb or
* This function will call eet_sync() from another thread. As long as the done_cb or
* error_cb haven't be called, you must keep @p ef open.
*/
EAPI Eio_File *eio_eet_sync(Eet_File *ef,

View File

@ -399,6 +399,15 @@ eio_eet_flush(Eet_File *ef,
return &eet->common;
}
API Eio_File *
eio_eet_sync(Eet_File *ef,
Eio_Done_Cb done_cb,
Eio_Eet_Error_Cb error_cb,
const void *data)
{
return eio_eet_flush(ef,done_cb,error_cb,data);
}
EAPI Eio_File *
eio_eet_data_write_cipher(Eet_File *ef,
Eet_Data_Descriptor *edd,