Niq Dudfield

Results 306 comments of Niq Dudfield
trafficstars

> It would be super awesome if you could run multiple AI edits in paralell so you could jump between places while waiting for gpt to finish the edit. Could...

You need a mutex in the SuiteJournal class iirc It is multi threaded writing to a string buffer subclass and flushing all the time. I'll send a snippet for "a"...

https://github.com/sublimator/xahaud/blob/81b1fb11f76d481ab6dab24f4a4d1f04eac4ec25/src/test/unit_test/SuiteJournal.h#L87-L88 ```c++ // Only write the string if the level at least equals the threshold. if (level >= threshold()) { static std::mutex log_mutex_; std::lock_guard lock(log_mutex_); suite_.log

# Analysis of Multithreaded Logging Issues in the Rippled Codebase After analyzing the code snippets, I can identify a potential threading issue in the logging system that could lead to...