Advantages of Thread pooling in embedded systems
Posted
by Microkernel
on Stack Overflow
See other posts from Stack Overflow
or by Microkernel
Published on 2010-03-21T17:21:31Z
Indexed on
2010/03/21
17:31 UTC
Read the original article
Hit count: 463
I am looking at the advantages of threadpooling design pattern in Embedded systems. I have listed few advantages, please go through them, comment and please suggest any other possible advantages that I am missing.
- Scalability in systems like ucos-2 where there is limit on number of threads.
- Increasing capability of any task when necessary like Garbage collection (say in normal systems if garbage collection is running under one task, its not possible to speed it up, but in threadpooling we can easily speed it up).
- Can set limit on the max system load.
Please suggest if I am missing anything.
© Stack Overflow or respective owner