You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by ab...@apache.org on 2012/12/18 11:15:38 UTC

svn commit: r1423392 - in /incubator/celix/trunk: framework/public/include/framework_exports.h remote_shell/private/src/activator.c

Author: abroekhuis
Date: Tue Dec 18 10:15:37 2012
New Revision: 1423392

URL: http://svn.apache.org/viewvc?rev=1423392&view=rev
Log:
CELIX-42: Fixed missing macro

Modified:
    incubator/celix/trunk/framework/public/include/framework_exports.h
    incubator/celix/trunk/remote_shell/private/src/activator.c

Modified: incubator/celix/trunk/framework/public/include/framework_exports.h
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/framework/public/include/framework_exports.h?rev=1423392&r1=1423391&r2=1423392&view=diff
==============================================================================
--- incubator/celix/trunk/framework/public/include/framework_exports.h (original)
+++ incubator/celix/trunk/framework/public/include/framework_exports.h Tue Dec 18 10:15:37 2012
@@ -40,6 +40,7 @@ building a DLL on windows.
   #endif /* framework_EXPORTS */
 #else /* defined (_WIN32) */
 #define FRAMEWORK_EXPORT __attribute__((visibility("default")))
+#define ACTIVATOR_EXPORT __attribute__((visibility("default")))
 #endif
 
 #endif /* FRAMEWORK_EXPORTS_H_ */

Modified: incubator/celix/trunk/remote_shell/private/src/activator.c
URL: http://svn.apache.org/viewvc/incubator/celix/trunk/remote_shell/private/src/activator.c?rev=1423392&r1=1423391&r2=1423392&view=diff
==============================================================================
--- incubator/celix/trunk/remote_shell/private/src/activator.c (original)
+++ incubator/celix/trunk/remote_shell/private/src/activator.c Tue Dec 18 10:15:37 2012
@@ -59,6 +59,7 @@ celix_status_t bundleActivator_create(bu
 	celix_status_t status = CELIX_SUCCESS;
     apr_pool_t *ctxpool;
     apr_pool_t *pool;
+
     status = bundleContext_getMemoryPool(context, &ctxpool);
     apr_pool_create(&pool, ctxpool);
     if (status == CELIX_SUCCESS) {