Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Unified Diff: src/main.cc

Issue 5333003: cashew: do not delete DBus::ObjectProxy objects from D-Bus callbacks (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/cashew.git@master
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/cashew_server.cc ('k') | src/service.h » ('j') | src/service.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/main.cc
diff --git a/src/main.cc b/src/main.cc
index 9d233975e5338c1719897d76e82b9b428fb7f1f5..44d02bbc857dc18b10b376f8f628209e6646d890 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -48,6 +48,8 @@ static void OnSignal(int signal) {
DLOG(INFO) << "received signal " << signal;
if (main_loop != NULL) {
g_main_loop_quit(main_loop);
+ DLOG(INFO) << "OnSignal: after quit, g_main_loop_is_running = "
+ << g_main_loop_is_running(main_loop);
}
}
@@ -78,6 +80,7 @@ int InstallSignalHandlers() {
// should not be called while event loop is running
static void CleanUpForExit() {
+ DCHECK(main_loop == NULL || !g_main_loop_is_running(main_loop));
DLOG(INFO) << "cleaning up";
delete server;
server = NULL;
@@ -125,7 +128,7 @@ int main(int argc, char *argv[]) {
DBus::Connection client_conn = DBus::Connection::SystemBus();
client_conn.set_timeout(cashew::kDBusConnectionTimeoutMilliseconds);
cashew::service_manager = new(std::nothrow) cashew::ServiceManager(
- client_conn);
+ client_conn, cashew::main_loop);
if (cashew::service_manager == NULL) {
LOG(ERROR) << "couldn't create service manager";
cashew::CleanUpForExit();
@@ -138,7 +141,7 @@ int main(int argc, char *argv[]) {
server_conn.request_name(cashew::CashewServer::kServiceName);
server_conn.set_timeout(cashew::kDBusConnectionTimeoutMilliseconds);
cashew::server = new(std::nothrow) cashew::CashewServer(server_conn,
- cashew::service_manager);
+ cashew::service_manager, cashew::main_loop);
if (cashew::server == NULL) {
LOG(ERROR) << "couldn't create cashew server";
cashew::CleanUpForExit();
« no previous file with comments | « src/cashew_server.cc ('k') | src/service.h » ('j') | src/service.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698