Description
EventProcessor::start() calls Thread::start(), which takes 5 arguments:
- name
- stacksize
- f(function pointer to be executed by the thread)
- a(argument for f)
- stack(pointer to stack used by the thread)
However the call to Thread::start() takes the pointer to stack as 4th argument.