Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror
×
Cellphones News

Symbian Microkernel Finally Goes Open Source 97

ruphus13 writes "Symbian announced over a year ago that they were going to Open Source their code, and the industry has been patiently waiting for that to happen. Well, it finally has. According to news on Wednesday, 'Symbian has released its platform microkernel and software development kit as open source under the Eclipse Public License. The Symbian Foundation claims that it is moving quickly toward an open source model, which is questionable, but the release of the EKA2 kernel is a signal that Symbian still means business about adopting an open source model. Accenture, ARM, Nokia and Texas Instruments contributed software to the microkernel, Symbian officials said.'"
This discussion has been archived. No new comments can be posted.

Symbian Microkernel Finally Goes Open Source

Comments Filter:
  • Re:Maemo (Score:2, Insightful)

    by BrokenHalo ( 565198 ) on Saturday October 24, 2009 @02:29AM (#29854649)
    Maemo is much more of an adventure because it's new.

    I guess it's only an adventure if you happen to have a Nokia device... :-|
  • Re:Maemo (Score:3, Insightful)

    by palegray.net ( 1195047 ) <philip...paradis@@@palegray...net> on Saturday October 24, 2009 @02:31AM (#29854657) Homepage Journal
    Many people don't equate [adventure, new] with [proven, stable].
  • Re:Maemo (Score:2, Insightful)

    by Anonymous Coward on Saturday October 24, 2009 @02:33AM (#29854667)

    How about because the hundred of millions of Symbian (uiq/s60/DoCoMo) devices are not going to disappear? Plus there is always a market for proven robust technologies such as this. Maemo will be important to Nokia but the bulk of sales will still be Symbian powered. There is even the possibility that S40 will be relegated to the rubbish bin and supplanted by whatever the Symbian Foundation releases.

  • Re:Oh, SyMbian... (Score:3, Insightful)

    by Anonymous Coward on Saturday October 24, 2009 @02:55AM (#29854749)
    This joke is getting OLD!
  • by Comp_Lex86 ( 958850 ) on Saturday October 24, 2009 @03:43AM (#29854863)
    Now people can rewrite the entire OS in "normal" C++ without all the awkward stuff like Active Objects, 10000 kinds of string "descriptors", CleanupStack and the weird API.
  • Re:Symbian (Score:3, Insightful)

    by walshy007 ( 906710 ) on Saturday October 24, 2009 @04:00AM (#29854897)

    being the owner of a nokia n95 (s60 symbian) I am puzzled at how you can not run your own code.. when running unsigned code it just tells me "warning: blah is not signed" just like ssh warns me when a key is changed or some such. Then I can install it anyway.

    I have not yet found any kind of drm in the phone.. at all. I install what I like from wherever I like and it just works.

    The rest of your post can be summaried as "it's different from unix, so I don't like it" which is your opinion to have, but it is an opinion. I agree having everything be like linux/bsd etc would make life as a developer a lot easier, nothing new to learn.

  • Re:Symbian (Score:5, Insightful)

    by RAMMS+EIN ( 578166 ) on Saturday October 24, 2009 @04:04AM (#29854911) Homepage Journal
    ``A microkernel architecture for devices least able to afford the overhead'' What overhead? The way I understand it, the overhead typically associated with microkernels comes two sources: overhead incurred when transferring control across process boundaries and inefficiency of the implementation. Inefficiency of the implementation (e.g. using a complex message-passing system that consumes many CPU cycles) is a problem, but it's not intrinsic to microkernels. Overhead incurred when transferring control across process boundaries depends on many factors, such as what your OS's idea of "process" is, how this is mapped to the constructs provided by the hardware, and how efficient the hardware implementation is. Long story short, implementing processes as tasks on x86 hardware and using the MMU to separate processes' address spaces is very inefficient. An implementation on an MMU-less system with an ARM CPU and all processes in the same address space would not be nearly as inefficient. In fact, on an ARM CPU, even with an MMU and processes in separate address spaces, one study (PDF [usenix.org]) has measured the context switching overhead of Linux to be up to 0.25%. If Linux can do that, a microkernel can, too. Now, I don't know about you, but 0.25% isn't enough to keep me awake with worry all night. All in all, I think the reputation that microkernels have for introducing a lot of overhead is simply due to inefficient implementations on inefficient hardware. I also wonder how much kernel efficiency still matters these days; it seems that most programs seem to fall in one of 3 categories: 1) mostly sitting idle waiting for input (user input, disk reads, memory access) 2) bound mostly by the speed of the graphics card 3) spending most of their CPU cycles in their own code or libraries. System call overhead has little impact on these programs ...
  • Thank you, Android (Score:5, Insightful)

    by obarthelemy ( 160321 ) on Saturday October 24, 2009 @04:26AM (#29854943)

    This issue is clearly being pushed forward by open-source Android. Smarter - and, maybe, weaker- competitors realize they must match Android's flexibility and openness.

    Windows Mobile will either have to offer an extremely compelling experience, Apple-like, or will be FOSSed into oblivion ? I'm taking bets, but only one way ^^

    Dream scenario: Smartphones -> Tablets/ebooks -> Netbooks -> PCs.

    Well, in the long run S60 it probably not the one to do that. But Maemo or Android, in a "bigger" version ?

  • Re:Maemo (Score:3, Insightful)

    by TheBishop ( 88677 ) on Saturday October 24, 2009 @06:46AM (#29855333)

    But why would people want to develop software for Symbian now that there is Maemo?

    Maemo's been out for years (N700, N800, N810, N810WIMAX) and nobody decided to develop anything of worth for it yet, why would they start now?

  • Re:Symbian (Score:5, Insightful)

    by BasilBrush ( 643681 ) on Saturday October 24, 2009 @07:33AM (#29855491)

    Drive letters. Enough said.
    Backslashes as directory separators
    Non-POSIX filesystem semantics

    In other words, standard FAT file path conventions. The most used file system in the world. As used by about 90% of people's desktop computers.

    Pervasive DRM, with code signing and a pay-us-to-access-more-OS-features capability model

    Doing what your customers ask and pay you for is never a bad decision for development. SymbianOS customers being handset manufacturers.

    A bizarre and perplexing C++ API based on manual exception management, with too many kinds of string class to count

    Symbian exceptions predated the introduction of exceptions to C++. So it wasn;t a choice not to go with the standard, rather that Symbian was a pioneer. Symbian does have several descriptor classes, and that is confusing. But they are there for reasons of memory efficiency on what were devices with tiny memories. Properly written Symbian code will do string storage and manipulation with less memory than any other API I know.

    "Active objects"

    Again, pioneering stuff. The responsiveness of multi-threaded applications without the overhead of multi-threading.

    A microkernel architecture for devices least able to afford the overhead

    Symbian was originally written for a device with 16Mhz ARM chip. If a microkernal was OK for that, it's OK for the far more beefy specs of today's smartphones. The problem isn't with the reality of Symbian OS, it's with your entirely imagined notion of what the requirements of a microkernel are. It's a microkernel chiefly because embedded devices such as phones have to run reliably for long period of time. That's more important than marginal speed differences.

    Very strange application deployment consisting of several disparate directories with magical names

    Strange = different from what you're used to.

    You complaints are a mixture of not knowing the perfectly sound reasons for engineering design decisions, and your arbitrary view that Unix is the one true way.

  • Re:Symbian (Score:3, Insightful)

    by drinkypoo ( 153816 ) <drink@hyperlogos.org> on Saturday October 24, 2009 @09:51AM (#29856263) Homepage Journal

    hahaha moblin *snort* Moblin is designed to work only on intel devices, so most of their customization has been ripping out other stuff, and cramming in intel drivers. In order to expand moblin's popularity you'd have to undo most of what intel has done. Meanwhile you'll be able to slap their same interface on top of UNR (or possibly onto the OpenGL ES-based Android, using the NDK... but be prepared to build a lot of drivers) and certainly by using Angstrom... if you can get it to build, ha ha. OpenEmbedded my ass. Er, wait... Android is probably the most credible thing going right now, and the fact that it's a big slow on PCs right now is not too relevant because it's fast on OMAPs and that's where the magic is happening right now. People can afford a cellphone, especially if they don't have to pay up front :)

  • Re:Market Share (Score:2, Insightful)

    by hercubus ( 755805 ) <hercubusNO@SPAMyahoo.com> on Saturday October 24, 2009 @10:01AM (#29856353) Homepage

    Maybe this handy pie chart [wikipedia.org] will enlighten you. Hint: Maemo is in the grey slice.

    Symbian phones belong in a "Not-that-smart-phone" category separate from the newer platforms. Sure, it was a great platform and is still useful, but it's legacy. We all know how newly-minted developers feel about legacy: junk/cruft/bloat -- throw it all away and build something new!!

  • Re:Symbian (Score:3, Insightful)

    by npsimons ( 32752 ) * on Saturday October 24, 2009 @01:43PM (#29857931) Homepage Journal

    Drive letters. Enough said.
    Backslashes as directory separators
    Non-POSIX filesystem semantics

    In other words, standard FAT file path conventions. The most used file system in the world. As used by about 90% of people's desktop computers.

    Damn, I'm out of mod points, otherwise I'd have modded you troll and moved on. Suffice to say, the idiocy of this first line alone is all I'm willing to deal with, so I will attempt to enlighten you, then move on.

    Do you even know WTF you're talking about? Have you ever actually *written* any software that opens files? I mean, yeah, FAT is very widespread, used everywhere. But last I checked, none of Linux, FreeBSD, NetBSD, OpenBSD, VxWorks or MacOSX (to name just a few OSes that have FATFS support) have drive letters or backslashes as directory separators. They also all support POSIX file semantics, even on FATFS. Drive letters, backslashes and non-POSIX filesystem semantics are *NOT* FAT file path conventions. To anyone who has ever even dabbled in system administration or programming on systems that have these "features" it is obvious what they are: bad design decisions that are only being held onto because of backwards compatibility.

All the simple programs have been written.

Working...