Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been given the task to fix an Embedded Operating System which is written in C/C++. The Current thread scheduler being used is very similar to Round Robin Scheduling, except it lacks one very important feature, the ability to interrupt threads and then return executing thus creating a dependable "slice" of execution time.

My Question is, how does one go about interrupting running code, execute another task and then return execution gracefully? I believe this behavior requires assembler specific to the architecture. This is the chip that the OS will be running under: http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=MPC860

On a side note, this is avionics software so it must be "Deterministic". Apart of this is that there is no heap usage, all memory must be bounded.

The current system is a "periodic process" in which the next task must wait for the first to complete. This is simple horrific, if one part of the operating system crashes, lets say the ATN stack, then the entire operating system will be brought to its knees. (Insert crashed airplane here... although this is class B software, which means the airplane will not crash if the system does.)

share|improve this question
7  
Time to pull any interests out of airlines. I'd like to think people writing avionics software knew these answers! – Aiden Bell Jan 18 '10 at 17:42
1  
Unfortunately, 'hazard to navigation' is not a valid close reason. – bmargulies Jan 18 '10 at 17:49
5  
Holy crap, don't try to do this yourself in (presumably) safety-critical software. Avionics is not for amateurs. There are a million commercial implementations of what you need out there already, many of them already in use in flight-certified applications. Go buy one of those. – Novelocrat Jan 18 '10 at 17:58
+1 Novelocrat. My sentiments exactly. – Aiden Bell Jan 18 '10 at 18:00
1  
okay, so then all of you should be happy that I am fixing this from the armature that wrote this OS in the first place. – Rook Jan 18 '10 at 18:08

3 Answers

up vote 7 down vote accepted

disclaimer: Don't use my advice. Find a specialist, if people's well-being depends on a system then don't leave it to chance/hacks/SO advice!

Plane oops

You should be able to write a new procedure which is entered via an interrupt at a known interval, save thread-state using existing scheduling functions and change thread context. Also,ensure your locking primitives work with the new scheduling and that you don't balls up non-atomic/non-instruction based T&S locking or anything.

This website gives good information about thread switching, state saving and so on. Ultimately interrupts are specific to your CPU/Hardware. The way you save your thread state will also be dependent on the constraints of the system and the thread structure you are using.

Modern Operating Systems 3rd Edition contains some good chunks on the theory, but the implementing depends on existing code and best practice for the hardware you are on, as well as other code in the kernel that handles interrupts, signals and so on.

Also "Real-time systems design and analysis By Phillip A. Laplante" might be a good resource for adapting your existing scheduler to the new requirements. Another interesting bit of text

share|improve this answer

If this is an operating system, really an operating system, of course it's talking to the hardware. It must have interrupt handling going in order to deal with I/O devices.

Sometimes the timer interrupt will come from the CPU itself, but in other system architectures it will come from an IO controller or some other device.

A general design alternative is to hand out CPU time only in small quanta so that the scheduler can reconsider more frequently, but no one can tell from here if that is going to make your particular problem better or worse.

So there's really no way anyone is going to be able to give you a detailed prescription here.

Except, of course, to report your employer to the FAA.

share|improve this answer
I think you are wrong. – Rook Jan 18 '10 at 18:09
1  
Well, apparently, since you downvoted me. Care to explain why? Or detail in what respect? I was programming this sort of thing in 1982. – bmargulies Jan 18 '10 at 18:12
good answer. +1 – Aiden Bell Jan 18 '10 at 18:17
I voted you down because you have stepped out side of the bounds of your knowledge and you are just bullshitting. Of course I'm working on an operating system. The IO controllers you are talking about need a thread in the first place, currently we are using afxbegianthread which is windows and of course it won't run on the target. I'd vote you down further if I could. – Rook Jan 18 '10 at 21:07
3  
I don't know much about architectures which attempt to use MFC for mission-critical systems. Of course, your question didn't mention that. You are assuming that we can all read your mind and discern aspects of your problem space that you haven't described. Your intemperate tone is not helping you get any advice you can actually use. There is no clear picture of the environment you are programming in and the problem you are trying to solve. – bmargulies Jan 18 '10 at 21:54

If I read your question correctly, I think you want to add thread priorities to your scheduler. Schedule all threads of the same priority round robin, but allow a higher priority to preempt a lower priority thread.

You must already have facilities for saving and restoring a thread's context to to round robin time slicing.

share|improve this answer
Nope, its a periodic process in which the next task must wait for the first to complete. – Rook Jan 18 '10 at 18:10
2  
Wow. I'm surprised I didn't just understand that from your clear and concise problem description. Good luck. – Richard Pennington Jan 18 '10 at 18:13
have a +1 on me ... Karma and all that :) – Aiden Bell Jan 18 '10 at 18:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.