From bd8f4902284a47dbdbd436be4249a9f338f76ed8 Mon Sep 17 00:00:00 2001 From: Felipe Magno de Almeida Date: Thu, 27 Aug 2020 10:24:25 -0300 Subject: [PATCH] benchmark: Remove unnecessary import and export macros from benchmark executables Executables do not need to export and import symbols. --- src/benchmarks/eo/class_simple.c | 8 ++++---- src/benchmarks/eo/class_simple.h | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/benchmarks/eo/class_simple.c b/src/benchmarks/eo/class_simple.c index 63378d6033..aa3cec94a5 100644 --- a/src/benchmarks/eo/class_simple.c +++ b/src/benchmarks/eo/class_simple.c @@ -7,8 +7,8 @@ #define MY_CLASS SIMPLE_CLASS -EOAPI const Efl_Event_Description _SIMPLE_FOO = EFL_EVENT_DESCRIPTION("foo"); -EOAPI const Efl_Event_Description _SIMPLE_BAR = EFL_EVENT_DESCRIPTION("bar"); +const Efl_Event_Description _SIMPLE_FOO = EFL_EVENT_DESCRIPTION("foo"); +const Efl_Event_Description _SIMPLE_BAR = EFL_EVENT_DESCRIPTION("bar"); static void _other_call(Eo *obj EINA_UNUSED, void *class_data EINA_UNUSED, Eo *other, int times) @@ -19,7 +19,7 @@ _other_call(Eo *obj EINA_UNUSED, void *class_data EINA_UNUSED, Eo *other, int ti } } -EAPI EFL_VOID_FUNC_BODYV(simple_other_call, EFL_FUNC_CALL(other, times), Eo *other, int times); +EFL_VOID_FUNC_BODYV(simple_other_call, EFL_FUNC_CALL(other, times), Eo *other, int times); static void _a_set(Eo *obj EINA_UNUSED, void *class_data, int a) @@ -28,7 +28,7 @@ _a_set(Eo *obj EINA_UNUSED, void *class_data, int a) pd->a = a; } -EAPI EFL_VOID_FUNC_BODYV(simple_a_set, EFL_FUNC_CALL(a), int a); +EFL_VOID_FUNC_BODYV(simple_a_set, EFL_FUNC_CALL(a), int a); static Eina_Bool _class_initializer(Efl_Class *klass) diff --git a/src/benchmarks/eo/class_simple.h b/src/benchmarks/eo/class_simple.h index 8445116963..56c92c0aba 100644 --- a/src/benchmarks/eo/class_simple.h +++ b/src/benchmarks/eo/class_simple.h @@ -6,16 +6,16 @@ typedef struct int a; } Simple_Public_Data; -EAPI void simple_a_set(Eo *self, int a); +void simple_a_set(Eo *self, int a); /* Calls simple_other_call(other, obj) and then simple_other_call(obj, other) * for 'times' times in order to grow the call stack on other objects. */ -EAPI void simple_other_call(Eo*self, Eo *other, int times); +void simple_other_call(Eo*self, Eo *other, int times); #define SIMPLE_CLASS simple_class_get() const Efl_Class *simple_class_get(void); -EOAPI extern const Efl_Event_Description _SIMPLE_FOO; -EOAPI extern const Efl_Event_Description _SIMPLE_BAR; +extern const Efl_Event_Description _SIMPLE_FOO; +extern const Efl_Event_Description _SIMPLE_BAR; #define SIMPLE_FOO (&(_SIMPLE_FOO)) #define SIMPLE_BAR (&(_SIMPLE_BAR))