If two processes which shares same system memory and system
clock in a distributed system, What is it called?
Answers were Sorted based on User's Feedback
what is difference between IRQ and FRQ ?
What is a Real-Time System ?
When would you choose bottom up methodology?
what is major concerns about any RTOS selection ?
what is the need of creating 4GB of pages in linux?
What is the important aspect of a real-time system ?
When would you choose top down methodology?
If two processes which shares same system memory and system clock in a distributed system, What is it called?
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,
Describe different job scheduling in operating systems.
Write a small dc shell script to find number of FF in the design
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