MCPcopy Create free account
hub / github.com/antirez/llama.cpp-deepseek-v4-flash / close_write

Method close_write

tools/server/server-models.cpp:1068–1071  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1066 std::atomic<bool> writer_closed{false};
1067 std::atomic<bool> reader_closed{false};
1068 void close_write() {
1069 writer_closed.store(true, std::memory_order_relaxed);
1070 cv.notify_all();
1071 }
1072 void close_read() {
1073 reader_closed.store(true, std::memory_order_relaxed);
1074 cv.notify_all();

Callers 1

server_http_proxyMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected