Click here to Skip to main content
15,893,904 members

Welcome to the Lounge

   

For discussing anything related to a software developer's life but is not for programming questions. Got a programming question?

The Lounge is rated Safe For Work. If you're about to post something inappropriate for a shared office environment, then don't post it. No ads, no abuse, and no programming questions. Trolling, (political, climate, religious or whatever) will result in your account being removed.

 
GeneralRe: OS Kernels Pin
Richard Andrew x642-Sep-16 12:04
professionalRichard Andrew x642-Sep-16 12:04 
GeneralRe: OS Kernels Pin
Mladen Janković2-Sep-16 12:12
Mladen Janković2-Sep-16 12:12 
GeneralRe: OS Kernels Pin
Tomaž Štih3-Sep-16 6:29
Tomaž Štih3-Sep-16 6:29 
GeneralRe: OS Kernels Pin
Mladen Janković3-Sep-16 7:36
Mladen Janković3-Sep-16 7:36 
GeneralRe: OS Kernels Pin
Tomaž Štih2-Sep-16 22:30
Tomaž Štih2-Sep-16 22:30 
GeneralRe: OS Kernels Pin
JackPeacock6-Sep-16 2:11
professionalJackPeacock6-Sep-16 2:11 
GeneralRe: OS Kernels Pin
Richard Andrew x646-Sep-16 12:11
professionalRichard Andrew x646-Sep-16 12:11 
GeneralRe: OS Kernels Pin
JackPeacock6-Sep-16 22:29
professionalJackPeacock6-Sep-16 22:29 
There's a micro-kernel for essential services, things like task scheduling and memory management. Essentially that's a standalone program since it's the lowest layer. Built on top of that are tasks that can be scheduled to implement the rest of the services. Task is a way to encapsulate a service. That has some security benefits by localizing references, it only runs as needed, can be swapped in a virtual system if not needed, and run multiple execution paths through the same code, important if there are several execution units (multi-core CPUs).

So the upper layers, close to the end user, are usually process based, though there are some exceptions when you get to embedded RTOS design. Response time is everything in an RTOS, which is why they exist alongside a traditional OS like LInux or Windows. In an RTOS there may not be enough resources to work through multiple layers. Remember, we're talking about a microwave oven or a sprinkler controller, not an i7 and 16GB RAM. A low level RTOS does look more like a library of method calls to a small set of services.
GeneralWhat do you guys think of H-1B visas ? Pin
jlongo2-Sep-16 6:19
jlongo2-Sep-16 6:19 
GeneralRe: What is the position of the presidential candidates on H-1B visas ? Pin
User 84202-Sep-16 6:24
User 84202-Sep-16 6:24 
GeneralRe: What is the position of the presidential candidates on H-1B visas ? Pin
OriginalGriff2-Sep-16 6:30
mveOriginalGriff2-Sep-16 6:30 
GeneralRe: What is the position of the presidential candidates on H-1B visas ? Pin
Charles Programmer5-Sep-16 6:24
Charles Programmer5-Sep-16 6:24 
GeneralRe: What is the position of the presidential candidates on H-1B visas ? Pin
OriginalGriff2-Sep-16 6:29
mveOriginalGriff2-Sep-16 6:29 
GeneralRe: What is the position of the presidential candidates on H-1B visas ? Pin
jlongo2-Sep-16 6:35
jlongo2-Sep-16 6:35 
GeneralRe: What is the position of the presidential candidates on H-1B visas ? Pin
Richard Deeming2-Sep-16 6:40
mveRichard Deeming2-Sep-16 6:40 
GeneralRe: What is the position of the presidential candidates on H-1B visas ? Pin
Kent Sharkey2-Sep-16 7:55
staffKent Sharkey2-Sep-16 7:55 
GeneralRe: What is the position of the presidential candidates on H-1B visas ? Pin
Richard Deeming2-Sep-16 8:11
mveRichard Deeming2-Sep-16 8:11 
GeneralRe: What is the position of the presidential candidates on H-1B visas ? Pin
#realJSOP2-Sep-16 16:22
mve#realJSOP2-Sep-16 16:22 
GeneralRe: What is the position of the presidential candidates on H-1B visas ? Pin
W Balboos, GHB2-Sep-16 6:41
W Balboos, GHB2-Sep-16 6:41 
GeneralRe: What is the position of the presidential candidates on H-1B visas ? Pin
Richard Deeming2-Sep-16 6:52
mveRichard Deeming2-Sep-16 6:52 
GeneralRe: What is the position of the presidential candidates on H-1B visas ? Pin
Rick York2-Sep-16 9:58
mveRick York2-Sep-16 9:58 
GeneralRe: What do you guys think of H-1B visas ? PinPopular
jschell2-Sep-16 7:14
jschell2-Sep-16 7:14 
GeneralRe: What do you guys think of H-1B visas ? Pin
Member 127183373-Sep-16 2:03
Member 127183373-Sep-16 2:03 
GeneralRe: What do you guys think of H-1B visas ? Pin
Vivi Chellappa3-Sep-16 3:21
professionalVivi Chellappa3-Sep-16 3:21 
GeneralRe: What do you guys think of H-1B visas ? Pin
JackPeacock6-Sep-16 2:29
professionalJackPeacock6-Sep-16 2:29 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.