Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
339 B
339 B
Circular buffer
This is a C implementation of a circular buffer, which can also be used as a queue or stack.
To achieve thread safety (to some extent) in a producent-consumer situation, there is no length variable, only write pointers. Due to not using a length variable, one element in the buffer is always left unused.