You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@celix.apache.org by pn...@apache.org on 2018/10/11 18:19:59 UTC

celix git commit: CELIX-454: Removes unused static function

Repository: celix
Updated Branches:
  refs/heads/feature/CELIX-454-pubsub-disc 2eb029dd2 -> d813507fb


CELIX-454: Removes unused static function


Project: http://git-wip-us.apache.org/repos/asf/celix/repo
Commit: http://git-wip-us.apache.org/repos/asf/celix/commit/d813507f
Tree: http://git-wip-us.apache.org/repos/asf/celix/tree/d813507f
Diff: http://git-wip-us.apache.org/repos/asf/celix/diff/d813507f

Branch: refs/heads/feature/CELIX-454-pubsub-disc
Commit: d813507fb4599e2bc2a7218316b8b6d593b20657
Parents: 2eb029d
Author: Pepijn Noltes <pe...@gmail.com>
Authored: Thu Oct 11 20:19:40 2018 +0200
Committer: Pepijn Noltes <pe...@gmail.com>
Committed: Thu Oct 11 20:19:40 2018 +0200

----------------------------------------------------------------------
 libs/framework/src/framework.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/celix/blob/d813507f/libs/framework/src/framework.c
----------------------------------------------------------------------
diff --git a/libs/framework/src/framework.c b/libs/framework/src/framework.c
index c717c17..8d030d5 100644
--- a/libs/framework/src/framework.c
+++ b/libs/framework/src/framework.c
@@ -121,6 +121,7 @@ static inline void fw_bundleEntry_increaseUseCount(framework_t *fw, long bndId)
     }
 }
 
+/*
 static inline size_t fw_bundleEntry_getUseCount(framework_t *fw, long bndId) {
     size_t count = 0;
     celixThreadMutex_lock(&fw->installedBundles.mutex);
@@ -135,7 +136,7 @@ static inline size_t fw_bundleEntry_getUseCount(framework_t *fw, long bndId) {
     }
     celixThreadMutex_unlock(&fw->installedBundles.mutex);
     return count;
-}
+}*/
 
 static inline void fw_bundleEntry_decreaseUseCount(framework_t *fw, long bndId) {
     assert(bndId >= 0);