You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,13 +11,14 @@ The design behind this logger was presented at ADCx 2023. Presentation [video](h
11
11
- Ability to log messages of any type and size from the real-time thread
12
12
- Statically allocated memory at compile time, no allocations in the real-time thread
13
13
- Support for printf-style format specifiers (using [a version of the printf family](https://github.com/nothings/stb/blob/master/stb_sprintf.h) that doesn't hit the `localeconv` lock)
14
-
- Efficient thread-safe logging using a [lock free queue](https://github.com/cameron314/readerwriterqueue).
14
+
- Efficient thread-safe logging using lock free queues (either [single consumer](https://github.com/cameron314/readerwriterqueue) or [multi consumer](https://github.com/hogliux/farbot)).
15
15
16
16
## Requirements
17
17
18
18
- A C++17 compatible compiler
19
19
- The C++17 standard library
20
20
- moodycamel::ReaderWriterQueue (will be downloaded via cmake if not provided)
21
+
- farbot's fifo (will be downloaded via cmake if not provided)
21
22
- stb's vsnprintf (will be downloaded via cmake if not provided)
0 commit comments