Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Linux/tools/perf/ui/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 920 B image not shown  

Quelle  progress.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0
#include <linux/kernel.h>
#include "progress.h"

static void null_progress__update(struct ui_progress *p __maybe_unused)
{
}

static struct ui_progress_ops null_progress__ops =
{
 .update = null_progress__update,
};

struct ui_progress_ops *ui_progress__ops = &null_progress__ops;

void ui_progress__update(struct ui_progress *p, u64 adv)
{
 u64 last = p->curr;

 p->curr += adv;

 if (p->curr >= p->next) {
  u64 nr = DIV_ROUND_UP(p->curr - last, p->step);

  p->next += nr * p->step;
  ui_progress__ops->update(p);
 }
}

void __ui_progress__init(struct ui_progress *p, u64 total,
    const char *title, bool size)
{
 p->curr = 0;
 p->next = p->step = total / 16 ?: 1;
 p->total = total;
 p->title = title;
 p->size  = size;

 if (ui_progress__ops->init)
  ui_progress__ops->init(p);
}

void ui_progress__finish(void)
{
 if (ui_progress__ops->finish)
  ui_progress__ops->finish();
}

Messung V0.5
C=95 H=89 G=91

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.