Merge lp://staging/~thomas-voss/dbus-cpp/decouple-executor-and-bus into lp://staging/dbus-cpp/15.04
Proposed by
Thomas Voß
Status: | Needs review |
---|---|
Proposed branch: | lp://staging/~thomas-voss/dbus-cpp/decouple-executor-and-bus |
Merge into: | lp://staging/dbus-cpp/15.04 |
Diff against target: |
1554 lines (+848/-466) 11 files modified
CMakeLists.txt (+2/-0) include/core/dbus/asio/make_executor.h (+5/-5) include/core/dbus/executor.h (+86/-10) src/core/dbus/CMakeLists.txt (+5/-1) src/core/dbus/asio/asio.cpp (+172/-383) src/core/dbus/asio/asio.h (+108/-0) src/core/dbus/bus.cpp (+251/-2) src/core/dbus/executor.cpp (+42/-0) tests/CMakeLists.txt (+1/-0) tests/executor_test.cpp (+145/-51) tests/service_test.cpp (+31/-14) |
To merge this branch: | bzr merge lp://staging/~thomas-voss/dbus-cpp/decouple-executor-and-bus |
Related bugs: |
Reviewer | Review Type | Date Requested | Status |
---|---|---|---|
Ubuntu Phablet Team | Pending | ||
Review via email: mp+282977@code.staging.launchpad.net |
Commit message
Decouple dbus::Executor/
Description of the change
Decouple dbus::Executor/
To post a comment you must log in.
Unmerged revisions
- 107. By Thomas Voß
-
Fixes lp:1501864.
- 106. By Thomas Voß
-
Decouple dbus::Executor/
dbus::Bus and prevent from ownership loops. - 105. By Thomas Voß
-
Decouple dbus::Executor and dbus::Bus.
- 104. By Thomas Voß
-
Add interface headers such that IDEs can pick them up.