Staging
v0.5.1
https://github.com/torvalds/linux
Raw File
Tip revision: 8bb9660418e05bb1845ac1a2428444d78e322cc7 authored by Linus Torvalds on 23 March 2013, 23:52:44 UTC
Linux 3.9-rc4
Tip revision: 8bb9660
progress.c
#include "../cache.h"
#include "progress.h"

static void nop_progress_update(u64 curr __maybe_unused,
				u64 total __maybe_unused,
				const char *title __maybe_unused)
{
}

static struct ui_progress default_progress_fns =
{
	.update		= nop_progress_update,
};

struct ui_progress *progress_fns = &default_progress_fns;

void ui_progress__update(u64 curr, u64 total, const char *title)
{
	return progress_fns->update(curr, total, title);
}

void ui_progress__finish(void)
{
	if (progress_fns->finish)
		progress_fns->finish();
}
back to top