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