Add missing function in lock void
authorcaro <caro>
Wed, 31 Aug 2011 08:50:19 +0000 (08:50 +0000)
committercaro <caro@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 31 Aug 2011 08:50:19 +0000 (08:50 +0000)
Patch by Youness Alaoui

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@63018 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

AUTHORS
src/include/eina_inline_lock_void.x

diff --git a/AUTHORS b/AUTHORS
index e2d04d3..170169b 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -17,3 +17,4 @@ Brett Nash <nash@nash.id.au>
 Tom Hacohen <tom@stosb.com>
 Sebastian Dransfeld <sd@tango.flipp.net>
 Myungjae Lee <mjae.lee@samsung.com>
+Youness Alaoui <kakaroto@kakaroto.homelinux.net>
index 2c849ac..4b54da4 100644 (file)
@@ -203,6 +203,18 @@ eina_rwlock_release(Eina_RWLock *mutex)
    return EINA_LOCK_FAIL;
 }
 
+static inline Eina_Lock_Result
+eina_rwlock_take_read(Eina_RWLock *mutex)
+{
+   return EINA_LOCK_FAIL;
+}
+
+static inline Eina_Lock_Result
+eina_rwlock_take_write(Eina_RWLock *mutex)
+{
+   return EINA_LOCK_FAIL;
+}
+
 /**
  * @}
  */