vote up 5 vote down star

I have seen people say that BeOS was a very good platform and it was very nice to program for it etc.

What was so special about it? What does it get you (as a programmer) that another OS doesn't?

flag

40% accept rate
How is this not a programming-related question? – JW Feb 16 at 22:58
this is a programming-related question – Colin Pickard Feb 16 at 23:02
This question raises discussion about architecture and framework design. – Arafangion Feb 16 at 23:07

closed as not programming related by Andrew Grant, EnderMB, Shog9, George Stocker Feb 16 at 22:55

3 Answers

vote up 4 vote down

Ahh, the joys of using BeOS. Here's what I recall:

  1. One of the more successful microkernel implementations. These have gone out of vogue, but it was efficient for the time.
  2. Almost POSIX compliant, to the point where many *nix programs were compiled for it, like Mozilla and VLC.
  3. Low memory footprint.
  4. Very responsive interface. However, I should qualify that the interface was almost completely unmodifiable. You had to like yellow.
  5. Good for multimedia. It is not clearly well defined how this was the case. Users claimed that this is because the operating system dealt well with many simultaneous streams (media, network, and other), but this is not explained to my satisfaction.

Overall, it had a good clean UI that was intuitive. The bane of BeOS was of course driver support. BeOS lives on opensourced as Haiku, but I wouldn't recommend it as frameworks/APIs have moved on over the past 10 years and people are better off using Linux/Cairo/etc.

Since, I couldn't answer anything, here's the koolaid from the time thanks to this site

Because that question was asked during the design of the filesystem, BFS is optimized for handling large files, rather than small. Because the question was asked while the kernel was being developed, the BeOS scheduler always "gives highest priority to timing-critical media, like audio." And, of course, the pervasive multithreading that gives all BeOS applications maximum responsiveness under heavy multitasking loads was conceived with media performance foremost in mind.

link|flag
BeOS was never opensourced. Haiku is an open source O/S created from scratch, to be api and binary compatible with BeOS, but it shares no source code with BeOS. I would imagine that many of the APIs would have been modernised in the process of building this OS from scratch. – Breton Feb 16 at 23:45
BTW, palm owns the IP for beos. If there's ever a revival or reuse of the source code, it'll come out of them. You can also have a look at the short lived Zeta operating system that used original BeOS source. – Breton Feb 16 at 23:47
"lives on" is meant to be somewhat ambiguous -- I didn't want to explain the legal rigmarole. Haiku is BeOS though -- in the sense that it uses the old APIs, albeit some functionality is reverse engineered or new. Haiku couldn't self host until mid-08 though... it's quite young. – Overflown Feb 16 at 23:52
1. BeOS didn't have a microkernel. So it wasn't a successful microkernel implementation. 2. Porting Mozilla to BeOS was a tremendous pain, in part because BeOS had fairly poor POSIX compliance. The stuff about multimedia is a retro-fit. You can easily find early Be Inc. material crowing about how it'll be a great web server, or great for hardware tinkering, or any number of other things. It was a solution looking for a problem. – tialaramex Jul 21 at 12:52
vote up 2 vote down

From memory, the odd thing about BeOS development is that the GUI really is multithreaded, unlike GUI frameworks on other platforms, which tend to be absolutely single-threaded.

This meant that developing GUI applications for BeOS is completely different, but I assume that this meant the GUI's were more responsive, without requiring explicit design at the application level for handling GUI interactions.

Of course, this does mean that using mutexes and the like are more important, and porting GUI applications from other OS's to BeOS are difficult unless the BeOS GUI library is effectively turned into a single-threaded library by using and enforcing a single application-wide mutex.

link|flag
It's a little worse than you think. The BeOS Window class inherited from Thread. So you absolutely without question would get a separate OS thread for every window in your application. If that didn't suit your application's design (it doesn't for most large GUI applications) then you'd need to re-design the application to get it to work well in BeOS. This is all the crazier because there was a relatively low system-wide thread limit. It's a radical thought experiment (like "What if all the Strings in my program were versioned filesystem objects?") that somehow got released in a commercial OS. – tialaramex Jul 21 at 13:01
vote up 1 vote down

As I remember, the google tech talk mentioned some BeOS/Haiku APIs and why they are so cool.

Google Tech Talks February 13, 2007 This is an introduction to Haiku, an open source operating system designed from the ground up for the desktop, inspired in the concepts and technologies of BeOS. The presentation will cover the concepts and features that make Haiku unique, as well as a hands on demo

link|flag

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