• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

FifoBuffer.cppD15-Dec-20247.7 KiB221169

FifoBuffer.hD15-Dec-20244.7 KiB17585

FifoController.hD14-Jan-20241.8 KiB6333

FifoControllerBase.cppD15-Dec-20242.2 KiB7343

FifoControllerBase.hD14-Jan-20243.6 KiB12933

FifoControllerIndirect.hD14-Jan-20242.3 KiB7438

README.mdD14-Jan-2024516 107

README.md

1Simple atomic FIFO for passing data between threads or processes.
2This does not require mutexes.
3
4One thread modifies the readCounter and the other thread modifies the writeCounter.
5
6TODO The internal low-level implementation might be merged in some form with audio_utils fifo
7and/or FMQ [after confirming that requirements are met].
8The higher-levels parts related to AAudio use of the FIFO such as API, fds, relative
9location of indices and data buffer, mapping, allocation of memmory will probably be kept as-is.
10