Coverage Report

Created: 2025-11-24 06:10

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