Coverage Report

Created: 2025-12-14 06:23

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
11
void ggml_critical_section_start() {
7
11
    ggml_critical_section_mutex.lock();
8
11
}
9
10
11
void ggml_critical_section_end(void) {
11
11
    ggml_critical_section_mutex.unlock();
12
11
}