Slashdot Mirror


The Microsoft Singularity

jose parinas writes ""Microsoft Research has published the first details of a wholly new operating system under development called Singularity, designed new from the ground up, built on a new language and designed with emphasis on dependability instead of performance.""

6 of 615 comments (clear)

  1. Re:Papers? by Anonymous Coward · · Score: 5, Informative

    For what it's worth, HotOS is an actual respected academic workshop. It was sponsored by Microsoft, but then again, Microsoft sponsors lots of real, respected academic conferences.

    The Singularity project is run by top-notch researchers with very good reputations in the academic community. This is the real deal.

    I think Slashdot has an acronym for things like the parent post... FUD, was it?

  2. They aren't the first by ndogg · · Score: 5, Informative

    Check out EROS for an implementation that exists now. Granted, EROS itself is no longer being developed, it was definitely around before this OS, and EROS has spawned some new projects (look on the link for links).

    --
    // file: mice.h
    #include "frickin_lasers.h"
  3. Re:Lack of Dynamic Loading by zootm · · Score: 5, Informative

    A quote from Galen Hunt (apparently someone working on it) from the Channel9 video page (I have to say I've not watched the video, at least yet, it's just interesting wherever developers actually reply to queries), says something about this:

    In Singularity, you can add new code to your application. However, instead of loading it into your own process, you load it into a child process. The OS facilitiates setting up channels between the child and its parent.

    While this is still very much a work in progress, the results so far look promising. For example, we have a dynamic web server that uses child processes. Also all of our device drivers run in child processes.

    I don't know if that directly answers your question, but I think it kinda explains how they're dealing with this sort of thing.

  4. Direct Link to Microsoft PDF by Skier4Life · · Score: 5, Informative
    --


    [SIG] Far better to be thought a fool then to post on /. and remove all doubt.
  5. Re:another longhorn? by Coryoth · · Score: 5, Informative

    This is just a research OS written in C#.

    No, it's written in Sing# which is an extension of Spec# which is an extension of C#. People really ought to pay more attention to Spec# - it's a nice extension of C# that allows for more formality if and when you require it. It's in the same class of language as SPARK which is an extension of Ada, JML which extends Java with specification semantics, BitC, Extended ML, HasCASL, and I guess to a lesser extent things like Eiffel and D.

    Think of it this way: static types and type signatures for functions allow you to specify things about the software that the compiler can statically check and make sure there aren't any silly errors. The languages listed above (to varying degrees) allow for more exacting specification about the software, and hence you can (with the right tools) do far more comprehensive static checking and ensure various properties of the software. The difference is that, with most of these languages, the amount of specification is optional - you can be as exacting as you want where you need it, and not bother where you don't. It's like a dynamically typed language that lets you declare and use static types (and check them)just for those areas of code where it matters (except you start with static types and can provide more exacting specification where it matters). It's well worth checking out.

    Jedidiah.

  6. Yawn by Salamander · · Score: 5, Informative

    I already wrote about this four days ago so I won't repeat the whole thing here. Short version:

    • Microkernel design, single-address-space implementation: good
    • Extensive compile-time checking of code that eventually runs native (not interpreted/JIT): good
    • Checking protocol behavior as well as lower-level function contracts: great
    • No deadlock/livelock checking: ok for now (it's a hard problem)
    • No checking of responses to component failure: oops
    • Not even a mention of making it distributed: weird

    Even shorter version: lots of great ideas, lots of work still to be done. Anybody with a clue about operating systems should be following this with interest.

    --
    Slashdot - News for Herds. Stuff that Splatters.