X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=bluesky%2Fstore.c;h=022deeb0ca2d4f8775b4a58a227128a086b3e5f4;hb=a5b5871865301712bc22ffc3d86a425dc0b45991;hp=03d4c4a6425880c478a467e12b25032c25d78abb;hpb=a8339d9810e470f59dffb3e186dd693b751ae04a;p=bluesky.git diff --git a/bluesky/store.c b/bluesky/store.c index 03d4c4a..022deeb 100644 --- a/bluesky/store.c +++ b/bluesky/store.c @@ -112,7 +112,6 @@ void bluesky_store_async_unref(BlueSkyStoreAsync *async) g_free(async); g_log("bluesky/store", G_LOG_LEVEL_DEBUG, "freeing async"); - g_print("Freed async\n"); } } @@ -175,11 +174,6 @@ void bluesky_store_async_mark_complete(BlueSkyStoreAsync *async) } } -static void test_notifier(gpointer a, gpointer u) -{ - g_print("Notifier called!\n"); -} - void bluesky_store_async_submit(BlueSkyStoreAsync *async) { BlueSkyStore *store = async->store; @@ -203,7 +197,6 @@ void bluesky_store_async_submit(BlueSkyStoreAsync *async) async->store->pending++; g_mutex_unlock(async->store->lock); - bluesky_store_async_add_notifier(async, test_notifier, NULL); store->impl->submit(store->handle, async); if (bluesky_options.synchronous_stores) @@ -212,7 +205,6 @@ void bluesky_store_async_submit(BlueSkyStoreAsync *async) static void op_complete(gpointer a, gpointer b) { - BlueSkyStoreAsync *async = (BlueSkyStoreAsync *)a; BlueSkyStoreAsync *barrier = (BlueSkyStoreAsync *)b; g_mutex_lock(barrier->lock);