void ff_thread_progress_report(ThreadProgress *pro, int n)
{ if (atomic_load_explicit(&pro->progress, memory_order_relaxed) >= n) return;
ff_mutex_lock(&pro->progress_mutex);
atomic_store_explicit(&pro->progress, n, memory_order_release);
ff_cond_broadcast(&pro->progress_cond);
ff_mutex_unlock(&pro->progress_mutex);
}
void ff_thread_progress_await(const ThreadProgress *pro_c, int n)
{ /* Casting const away here is safe, because we only read from progress *andwillleavepro_cinthesamestateuponleavingthefunction
* as it had at the beginning. */
ThreadProgress *pro = (ThreadProgress*)pro_c;
if (atomic_load_explicit(&pro->progress, memory_order_acquire) >= n) return;
ff_mutex_lock(&pro->progress_mutex); while (atomic_load_explicit(&pro->progress, memory_order_relaxed) < n)
ff_cond_wait(&pro->progress_cond, &pro->progress_mutex);
ff_mutex_unlock(&pro->progress_mutex);
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.12 Sekunden
(vorverarbeitet am 2026-08-24)
¤
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.