Find a file
Itamar c9396be83f WaitBlocker: don't unblock if thread has pending SIGCONT
Previosuly, if we sent a SIGCONT to a stopped thread
and then waitpid() with WSTOPPED on that thread before
the signal was dispatched,
then the WaitBlocker would first unblock (because the thread is stopped)
and only after that the thread would get the SIGCONT signal.
This would mean that when waitpid returns
the waitee is not stopped.

To fix this, we do not unblock the waiting thread
if the waitee thread has a pending SIGCONT.
2020-03-28 18:27:18 +01:00
.github
AK AK: Add some string comparison operators 2020-03-28 09:11:13 +01:00
Applications Browser: Let the user add/remove bookmarks to the bookmarks bar 2020-03-27 14:12:18 +01:00
Base Browser: Let the user add/remove bookmarks to the bookmarks bar 2020-03-27 14:12:18 +01:00
Demos WidgetGallery: Remove G prefixes from components 2020-03-19 22:52:44 +01:00
DevTools AK: Add FlyString, a simple flyweight string class 2020-03-22 13:03:43 +01:00
Documentation Documentation: Tweak document about smart pointers a bit 2020-03-20 14:41:02 +01:00
Games Solitaire: Use dark green for empty stack outlines 2020-03-19 22:52:18 +01:00
Kernel WaitBlocker: don't unblock if thread has pending SIGCONT 2020-03-28 18:27:18 +01:00
Libraries LibJS: Add a global "Object" constructor 2020-03-28 17:23:54 +01:00
MenuApplets
Meta Meta: Ignore the LibJS test runner script when linting 2020-03-25 16:30:58 +01:00
Ports Ports/bash: Make a /bin/bash symlink to /usr/local/bin/bash 2020-03-25 15:55:28 +01:00
Servers NotificationServer: Update locations of notifications after closing one 2020-03-28 16:07:47 +01:00
Shell Shell: More general tilde expansion 2020-03-22 01:15:33 +01:00
Tests
Toolchain Toolchain/Ports: Update gcc to 9.3.0 2020-03-23 08:22:41 +01:00
Userland js: Publish the global object as "global" 2020-03-27 12:24:58 +01:00
.clang-format Meta: Update .clang-format to not indent nested namespaces 2020-03-14 10:10:21 +01:00
.gitignore
.travis.yml
CODE_OF_CONDUCT.md
CONTRIBUTING.md Meta: Add feature policy to contribution guidelines 2020-03-28 10:57:09 +01:00
INSTALL.md
LICENSE
Makefile
Makefile.common
Makefile.subdir
ReadMe.md Meta: Add more libraries to ReadMe.md 2020-03-14 20:03:27 +01:00

SerenityOS

Graphical Unix-like operating system for x86 computers.

Travis CI status

About

SerenityOS is a love letter to '90s user interfaces with a custom Unix-like core. It flatters with sincerity by stealing beautiful ideas from various other systems.

Roughly speaking, the goal is a marriage between the aesthetic of late-1990s productivity software and the power-user accessibility of late-2000s *nix. This is a system by us, for us, based on the things we like.

I (Andreas) regularly post raw hacking sessions and demos on my YouTube channel.

Sometimes I write about the system on my github.io blog.

I'm also on Patreon and GitHub Sponsors if you would like to show some support that way.

Screenshot

Screenshot as of 1133aca

Kernel features

  • x86 (32-bit) kernel with pre-emptive multi-threading
  • Hardware protections (SMEP, SMAP, UMIP, NX, WP, TSD, ...)
  • IPv4 stack with ARP, TCP, UDP and ICMP protocols
  • ext2 filesystem
  • POSIX signals
  • Purgeable memory
  • /proc filesystem
  • Pseudoterminals (with /dev/pts filesystem)
  • Filesystem notifications
  • CPU and memory profiling
  • SoundBlaster 16 driver
  • VMWare/QEMU mouse integration

System services

  • Launch/session daemon (SystemServer)
  • Compositing window server (WindowServer)
  • Text console manager (TTYServer)
  • DNS client (LookupServer)
  • Network protocols server (ProtocolServer)
  • Software-mixing sound daemon (AudioServer)
  • Desktop notifications (NotificationServer)
  • HTTP server (WebServer)
  • Telnet server (TelnetServer)

Libraries

  • C++ templates and containers (AK)
  • Event loop and utilities (LibCore)
  • 2D graphics library (LibGfx)
  • GUI toolkit (LibGUI)
  • Cross-process communication library (LibIPC)
  • HTML/CSS engine (LibWeb)
  • JavaScript engine (LibJS)
  • Markdown (LibMarkdown)
  • Audio (LibAudio)
  • PCI database (LibPCIDB)
  • Terminal emulation (LibVT)
  • Network protocols (HTTP) (LibProtocol)
  • Mathematical functions (LibM)
  • ELF file handing (LibELF)
  • POSIX threading (LibPthread)
  • Higher-level threading (LibThread)

Userland features

  • Unix-like libc and userland
  • Shell with pipes and I/O redirection
  • On-line help system (both terminal and GUI variants)
  • Web browser (Browser)
  • C++ IDE (HackStudio)
  • IRC client
  • Desktop synthesizer (Piano)
  • Various desktop apps & games
  • Color themes

How do I build and run this?

See the SerenityOS build instructions

Wanna chat?

Come hang out with us in #serenityos on the Freenode IRC network.

Author

Contributors

(And many more!) Feel free to append yourself here if you've made some sweet contributions. :)

License

SerenityOS is licensed under a 2-clause BSD license.