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 2015/11/03 12:09:57 UTC

[20/21] celix git commit: CELIX-269: Merge branch 'feature/CELIX-269_depman' into depman

CELIX-269: Merge branch 'feature/CELIX-269_depman' into depman


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

Branch: refs/heads/develop
Commit: 9af85cef5ca13c70aa46290850e0b7e9a9d436f4
Parents: f5a3cdd 2e480a2
Author: Pepijn Noltes <pe...@gmail.com>
Authored: Tue Nov 3 10:18:41 2015 +0100
Committer: Pepijn Noltes <pe...@gmail.com>
Committed: Tue Nov 3 10:18:41 2015 +0100

----------------------------------------------------------------------
 framework/private/src/bundle_context.c          |   3 +
 framework/private/src/service_reference.c       |   1 -
 .../examples/calculator_shell/CMakeLists.txt    |   1 -
 .../private/include/add_command.h               |   5 +-
 .../private/include/sqrt_command.h              |   5 +-
 .../private/include/sub_command.h               |   5 +-
 .../calculator_shell/private/src/add_command.c  |  46 +-
 .../private/src/calculator_shell_activator.c    |  55 ++-
 .../calculator_shell/private/src/sqrt_command.c |  42 +-
 .../calculator_shell/private/src/sub_command.c  |  46 +-
 remote_shell/private/include/shell_mediator.h   |   2 +-
 remote_shell/private/src/remote_shell.c         |  46 +-
 remote_shell/private/src/shell_mediator.c       |  19 +-
 shell/CMakeLists.txt                            |  38 +-
 shell/private/include/help_command.h            |  33 --
 shell/private/include/inspect_command.h         |  33 --
 shell/private/include/install_command.h         |  33 --
 shell/private/include/log_command.h             |  33 --
 shell/private/include/ps_command.h              |  33 --
 shell/private/include/shell_private.h           |  22 +-
 shell/private/include/start_command.h           |  33 --
 shell/private/include/std_commands.h            |  44 ++
 shell/private/include/stop_command.h            |  33 --
 shell/private/include/uninstall_command.h       |  33 --
 shell/private/include/update_command.h          |  35 --
 shell/private/src/activator.c                   | 415 ++++++++++---------
 shell/private/src/help_command.c                | 135 +++---
 shell/private/src/inspect_command.c             | 121 ++----
 shell/private/src/install_command.c             |  49 +--
 shell/private/src/lb_command.c                  | 181 ++++++++
 shell/private/src/log_command.c                 |  48 +--
 shell/private/src/ps_command.c                  | 162 --------
 shell/private/src/shell.c                       | 340 ++++++++++-----
 shell/private/src/start_command.c               |  89 ++--
 shell/private/src/stop_command.c                |  93 ++---
 shell/private/src/uninstall_command.c           |  33 +-
 shell/private/src/update_command.c              |  42 +-
 shell/public/include/command.h                  |  23 +-
 shell/public/include/command_impl.h             |  48 ---
 shell/public/include/shell.h                    |  11 +-
 shell/public/src/command.c                      |  45 --
 shell_tui/private/src/shell_tui.c               |   5 +-
 42 files changed, 1074 insertions(+), 1445 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/celix/blob/9af85cef/framework/private/src/service_reference.c
----------------------------------------------------------------------