what is major concerns about any RTOS selection ?

Answers were Sorted based on User's Feedback



what is major concerns about any RTOS selection ?..

Answer / mohsin

There are two major reson to consider before selecting any RTOS

1) Interuppt latency
2) Footprint (size of the executable which is generated
after compiling)
3) Context switching time is also considered as vital
element in selection

Is This Answer Correct ?    35 Yes 5 No

what is major concerns about any RTOS selection ?..

Answer / mujeer

Interrrupt Latency means the time taken by the processor to
pass the control to ISR after the interrupt is raised.
Certainly this is the hardware feature.

Footprint of the OS matters because with the same compiler
and same optimization techniques, Different OS's will have
different footprint.
So this is can be looked upon while selecting the RTOS.

RTOS can be chosen looking at various API support it
provides. Synchronization support, Scheduler algos, and
memory management of the OS.

Is This Answer Correct ?    16 Yes 2 No

what is major concerns about any RTOS selection ?..

Answer / endachata

(1) Interrupt latency means, the time taken by the processor
to service the interrupt. So, obviously the interrupt
latency depends on how good the Interrupt Service Routine
was written

(2) Foot print is completely related to compiler and its
optimization techniques

Is This Answer Correct ?    17 Yes 7 No

what is major concerns about any RTOS selection ?..

Answer / santosh

First thing i will look for open source RTOS, so that i can
modify it as per my application requirements. Further, it
will help in debugging software with confidence.


Context switching time is again in programmers hand(i.e.OS
porting work).

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More RTOS AllOther Interview Questions

what are the rules u follow when u r writing critical section of code?

6 Answers   TCS,


What do you mean by deadlock?

8 Answers   Bosch,


I have been working on one thread which manage and control a couple of circular buffers. It has api for other thread to access. As the thread grows bigger and bigger, I split it as 3 to 4 threads which need to share common buffers, and also their api could be used by other threads, (not these three threads). Inside api, I also allow other threads to access these three threads' common buffers(more than one buffer). SO I have to use mutex to avoid race condition . But I found mutex will be everwhere in all the threads when they update the common buffer. I am wondering whether I could reduce mutex usage(more mutex will hure my system performance). any ideas for how to reduce mutex usage meanwhile to avoid race condition. Thanks

2 Answers  


If two processes which shares same system memory and system clock in a distributed system, What is it called?

7 Answers  


When would you choose top down methodology?

3 Answers   CTS,






what is the need of creating 4GB of pages in linux?

1 Answers   TCS,


What is the difference b/n any GPOS and RTOS?Give suitable examples or characteristic of RTOS to support your answer. What changes can be done in a GPOS to make it work like a RTOS? What basic features will you support, if you have to design a RTOS?

8 Answers   Bosch, Emulogic, L&T, Qualcomm,


What is a mission critical system ?

3 Answers  


What is the difference between Hard and Soft real-time systems ?

11 Answers   Google, Hella, Satyam,


When would you choose bottom up methodology?

5 Answers   Knowx Innovations,


Explain the difference between microkernel and macro kernel.

5 Answers   Infosys, Tech Mahindra,


what is major concerns about any RTOS selection ?

4 Answers   Bosch,


Categories