X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;ds=sidebyside;f=bluesky%2Fstore.c;h=7a63b04acc8a31e612491e610755292a0874a44a;hb=6abd55eff09d83999c7a84e0ee63bdc3100f7666;hp=f8b3a6dae0e5e4e64ae5d9453341d0c74e1ea99f;hpb=8a2ef6b448a40c790e7df154c12b54932f3e62e0;p=bluesky.git diff --git a/bluesky/store.c b/bluesky/store.c index f8b3a6d..7a63b04 100644 --- a/bluesky/store.c +++ b/bluesky/store.c @@ -156,6 +156,8 @@ void bluesky_store_async_mark_complete(BlueSkyStoreAsync *async) { g_return_if_fail(async->status != ASYNC_COMPLETE); + bluesky_time_hires elapsed = bluesky_now_hires() - async->start_time; + g_mutex_lock(async->store->lock); async->store->pending--; if (async->store->pending == 0) @@ -170,12 +172,26 @@ void bluesky_store_async_mark_complete(BlueSkyStoreAsync *async) async->notifiers = nl->next; g_thread_pool_push(notifier_thread_pool, nl, NULL); } + + g_log("bluesky/store", G_LOG_LEVEL_DEBUG, + "[%p] complete: elapsed = %"PRIi64" ns", + async, elapsed); } void bluesky_store_async_submit(BlueSkyStoreAsync *async) { BlueSkyStore *store = async->store; + async->start_time = bluesky_now_hires(); + + g_log("bluesky/store", G_LOG_LEVEL_DEBUG, "[%p] submit: %s %s", + async, + async->op == STORE_OP_GET ? "GET" + : async->op == STORE_OP_PUT ? "PUT" + : async->op == STORE_OP_DELETE ? "DELETE" + : async->op == STORE_OP_BARRIER ? "BARRIER" : "???", + async->key); + /* Barriers are handled specially, and not handed down the storage * implementation layer. */ if (async->op == STORE_OP_BARRIER) { @@ -185,12 +201,6 @@ void bluesky_store_async_submit(BlueSkyStoreAsync *async) return; } - g_log("bluesky/store", G_LOG_LEVEL_DEBUG, "submit: %s %s", - async->op == STORE_OP_GET ? "GET" - : async->op == STORE_OP_PUT ? "PUT" - : async->op == STORE_OP_DELETE ? "DELETE" : "???", - async->key); - g_mutex_lock(async->store->lock); async->store->pending++; g_mutex_unlock(async->store->lock);