I wonder if anyone know any simple design, but a very simple operating system written in Ada Or if possible, give an example, thank you.
-
2See also this [thread](http://groups.google.com/group/comp.lang.ada/browse_frm/thread/dea2d62ab1462538). – trashgod Jun 18 '11 at 19:50
-
...assuming you have a Google account. – T.E.D. Jun 20 '11 at 13:55
-
I see Trashgod found my thread on google on the same topic! – Shark8 Jun 20 '11 at 16:49
4 Answers
There is also TAMP: https://github.com/Lucretia/tamp
But it's not in a status that you could call it OS.

- 1,844
- 10
- 11
The Army Secure Operating System (ASOS) was written almost entirely in Ada. It was designed to meet Orange Book A1 protection requirements, support Ada applications more directly, and run on a commodity Sun3. The total software was 55,000 lines of code. It even had checkpointing/restore and later a secure RDBMS.
http://www.cs.washington.edu/research/projects/poirot3/Oakland/sp/PAPERS/00044288.PDF

- 1,477
- 1
- 11
- 14
-
-
The best work on high-assurance security of that time was sometimes published in ACM and IEEE with paywalls. That was only free copy of final report. However, the intro will tell you plenty. In case you have access, I also include a link to the one with specs & verification. – Nick P Mar 27 '17 at 16:20
-
Well, I actually know of several custom ones done for small embedded systems, but none are available for public viewing. Sadly, a lot of good Ada work has been hidden away from the public due to the military/avionics niche it has been done in.
RTEMS has been available in both Ada and C source forms since the mid-1990s.

- 44,016
- 10
- 73
- 134
-
2History of RTEMS: http://www.rtems.com/ml/rtems-users/2004/september/msg00064.html – user287424 Jul 29 '12 at 23:46