Search Results

2
votes

Queues in the Linux Kernel

You seem to confusing an abstraction (a fifo queue) with an implementation (a linked list). They are not mutually exclusive - in fact queues are most commonly implemented as linked lists - there i …
2
votes

Terminology/naming convention for queue operations/APIs?

push/pop is plain wrong for a fifo as these are stack (first in last out) operations. queue can refer to the object as well as an operation so is a bit overloaded and dequeue can cause conf …
3
votes

how bad is it to use dynamic datastuctures on an embedded system?

There are a number of reasons not to use malloc (or equivalent) in an embedded system. As you mentioned, it is important that you do not suddenly find yourself out of memory. …