From bbbf959e77284e44d4a0e55d87fe2ca9ccce504d Mon Sep 17 00:00:00 2001 From: Youness Alaoui Date: Tue, 20 Sep 2011 22:06:33 +0000 Subject: [PATCH] Ecore: Oups, typo, check for PS3 with __lv2ppu__ and not __ppulv2__ SVN revision: 63504 --- legacy/ecore/src/lib/ecore/Ecore.h | 12 ++++++------ legacy/ecore/src/lib/ecore/ecore_private.h | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/legacy/ecore/src/lib/ecore/Ecore.h b/legacy/ecore/src/lib/ecore/Ecore.h index 1dc3659622..b2b2a83197 100644 --- a/legacy/ecore/src/lib/ecore/Ecore.h +++ b/legacy/ecore/src/lib/ecore/Ecore.h @@ -566,7 +566,7 @@ extern "C" { int number; /**< The signal number. Either 1 or 2 */ void *ext_data; /**< Extension data - not used */ -#if !defined (_WIN32) && !defined (__ppulv2__) +#if !defined (_WIN32) && !defined (__lv2ppu__) siginfo_t data; /**< Signal info */ #endif }; @@ -575,7 +575,7 @@ extern "C" { { void *ext_data; /**< Extension data - not used */ -#if !defined (_WIN32) && !defined (__ppulv2__) +#if !defined (_WIN32) && !defined (__lv2ppu__) siginfo_t data; /**< Signal info */ #endif }; @@ -587,7 +587,7 @@ extern "C" { Eina_Bool terminate : 1; /**< Set if the exit request was a terminate singal */ void *ext_data; /**< Extension data - not used */ -#if !defined (_WIN32) && !defined (__ppulv2__) +#if !defined (_WIN32) && !defined (__lv2ppu__) siginfo_t data; /**< Signal info */ #endif }; @@ -596,7 +596,7 @@ extern "C" { { void *ext_data; /**< Extension data - not used */ -#if !defined (_WIN32) && !defined (__ppulv2__) +#if !defined (_WIN32) && !defined (__lv2ppu__) siginfo_t data; /**< Signal info */ #endif }; @@ -605,7 +605,7 @@ extern "C" { { int num; /**< The realtime signal's number */ -#if !defined (_WIN32) && !defined (__ppulv2__) +#if !defined (_WIN32) && !defined (__lv2ppu__) siginfo_t data; /**< Signal info */ #endif }; @@ -698,7 +698,7 @@ extern "C" { Eina_Bool exited : 1; /** < set to 1 if the process exited of its own accord */ Eina_Bool signalled : 1; /** < set to 1 id the process exited due to uncaught signal */ void *ext_data; /**< Extension data - not used */ -#if !defined (_WIN32) && !defined (__ppulv2__) +#if !defined (_WIN32) && !defined (__lv2ppu__) siginfo_t data; /**< Signal info */ #endif }; diff --git a/legacy/ecore/src/lib/ecore/ecore_private.h b/legacy/ecore/src/lib/ecore/ecore_private.h index 0acb484406..fe955805f2 100644 --- a/legacy/ecore/src/lib/ecore/ecore_private.h +++ b/legacy/ecore/src/lib/ecore/ecore_private.h @@ -164,7 +164,7 @@ void *_ecore_main_fd_handler_del(Ecore_Fd_Handler *fd_handler); void _ecore_main_shutdown(void); -#if defined (_WIN32) || defined (__ppulv2__) +#if defined (_WIN32) || defined (__lv2ppu__) static inline void _ecore_signal_shutdown(void) { } static inline void _ecore_signal_init(void) { } static inline void _ecore_signal_received_process(void) { }