Coverage Report

Created: 2025-12-28 06:26

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/llama.cpp/ggml/src/ggml-threading.cpp
Line
Count
Source
1
#include "ggml-threading.h"
2
#include <mutex>
3
4
std::mutex ggml_critical_section_mutex;
5
6
835
void ggml_critical_section_start() {
7
835
    ggml_critical_section_mutex.lock();
8
835
}
9
10
835
void ggml_critical_section_end(void) {
11
835
    ggml_critical_section_mutex.unlock();
12
835
}