Commit Graph
3874 Commits
Author SHA1 Message Date
Bananymous 390a7674b1 LibC: Fix uthread deallocation
Update dtv[0] to the max loadad module when loading dynamic modules

Free uthread if stack allocation or mprotect fails on pthread_create

Don't unmap the currently used stack when detached thread exits
2026-07-20 04:07:23 +03:00
Bananymous f96f2b4cac ports: Split dejavu fonts to their own port 2026-07-20 04:07:23 +03:00
Bananymous 51b9dcebbc Kernel: Support FIONBIO ioctl 2026-07-20 04:07:23 +03:00
Bananymous 583c2437b4 LibC: Don't munmap nullptr with 0 size in malloc 2026-07-20 04:07:23 +03:00
Bananymous efb25e5666 BAN/LibC: Move ldexp, scalbn to libc
They are now implemented with float decompostion to modify the exponent
bits directly
2026-07-20 04:07:23 +03:00
Bananymous f0e95ffe48 LibC: Make qsort_swap static
There is no need to export this
2026-07-20 04:07:23 +03:00
Bananymous 511ab7e99c LibC: Define locale_t as an poiter
A lot of ports seem to depend on this casting nullptr into locale_t
2026-07-20 04:07:23 +03:00
Bananymous 4df58c5155 Kernel: Check for overflow in seek syscall 2026-07-20 04:07:23 +03:00
Bananymous f6e27e5f05 toolchain: Update gcc 15.2.0->15.3.0
There was an ICE bug in gcc 15.2.x when compiling webkitgtk
2026-07-20 04:07:23 +03:00
Bananymous 87006e277f LibC: Define winsize in both termios.h and sys/ioctl.h 2026-07-20 04:07:23 +03:00
Bananymous 2c340c5532 BAN: Implement more numerically stable hypot 2026-07-20 04:07:23 +03:00
Bananymous f6b91578ae LibC: Enable backtrace dumping by default
I'm not sure why I had turned this off
2026-07-20 04:07:23 +03:00
Bananymous 73a95bd725 ports/lynx: Update 2.9.2->2.9.3 and fix compilation 2026-07-20 04:07:23 +03:00
Bananymous 130c4f681c ports/ncurses: Enable widec support and disable test compilation
There is one test with buggy macros that does not compile and im not
feeling like making a patch for it now :^)
2026-07-20 04:07:23 +03:00
Bananymous e03a26cf01 LibC: Don't ASSERT in times
Return the current process CPU time as user time. We don't have a way to
get system/user time separation or CPU times of child processes
2026-07-20 04:07:23 +03:00
Bananymous 2a3eca5b36 LibC: Implement POSIX binary search trees
I used RB tree for this. The implementation is based on the code on
wikipedia about RB trees.
2026-07-20 04:07:23 +03:00
Bananymous 658e74b507 bootloader: Check that VESA mode is linear
I don't think there are any graphical non-linear framebuffers but good
to be sure
2026-07-20 04:07:23 +03:00
Bananymous 9bdf60bb88 bootloader: Fix stack corruption when pressing non ascii keys 2026-07-20 04:07:23 +03:00
Bananymous 3148c28c3d userspace: Add basic find utility
This is mostly working but is missing -exec and -ok support. It can
search files though :^)
2026-07-08 21:48:14 +03:00
Bananymous fa89645542 userspace: Implement simple sort utility
This supports most(?) options except for the separate fields. Should
work for simple use cases

Also merge is currently just a wrapper around sort so its not optimized
:D
2026-07-08 21:48:14 +03:00
Bananymous ddf8fbc085 BuildSystem: Use ccache if found 2026-07-08 21:48:14 +03:00
Bananymous ecfd98fad0 bootloader: Don't use random packing in memory map 2026-07-08 21:48:14 +03:00
Bananymous 2e9f7077c9 TaskBar: Fix division by zero error
If a CPU does not have updated stats to show, just display ??.??%
2026-07-07 17:50:00 +03:00
Bananymous 132b75c2d0 ports/bash: Fix compilation with moved winsize 2026-07-07 16:59:20 +03:00
Bananymous bc8f0f373e ports: Add tar port 2026-07-07 16:59:20 +03:00
Bananymous e352bfbb23 mkdir: Don't fail the target exists and -p was given 2026-07-07 16:59:20 +03:00
Bananymous 3ee6240806 Kernel: Prioritize EEXISTS sys_mkdir
This fixes `mkdir -p ...` failing to create existing parents which are
not writable
2026-07-07 16:59:20 +03:00
Bananymous 304f94f3b1 LibC: Implement __fpending
Some gnu programs want this and I don't want to make FILE non-opaque
2026-07-07 16:59:20 +03:00
Bananymous 89fa957297 BuildSystem: Fix keymap in base sysroot 2026-07-07 16:59:20 +03:00
Bananymous 7348511ed3 ports/llvm: Add support for pthread_setname_np and cpu count
Also package the llvm into the format mesa expects. This was kinda
tedious to always do manually
2026-07-07 10:30:07 +03:00
Bananymous 20392c6cc1 LibC: Add malloc.h with some GNU extension
This adds `reallocarray`, `malloc_usable_size`, `mallinfo`, `mallinfo2`
2026-07-07 10:30:07 +03:00
Bananymous 0843b8989d Kernel: Fix timer deadline issues in scheduler
Don't wake up threads when getting the next timer deadline.
If we are idling this can: remove thread from block list, get the
deadline for the next blocked thread, return to idle thread. This will
end up sleeping until the next wake up condition which in the worst
case would be rebalance, or indefinitely when not running SMP.

Make sure we always set the next timer deadline. I was not doing that if
the timer interrupt did not lead to a yield
2026-07-07 10:30:07 +03:00
Bananymous 1c8112f1a7 ports: Update xbanan 2026-07-07 05:07:36 +03:00
Bananymous 49662aa994 Kernel: Don't use peridic interrupts for scheduling
Scheduler will now set a timer interrupt deadline for when it should get
interrupted next. This fixes a big issue I've had for a long time where
sleeping on an idle core would have to wait for the next periodic
interrupt to wake up. This could cause 1 ms sleeps to be close to 10 ms.

This currently only supports lapic timers and will still fallback to
periodic interrupts when running with PIC. I should add deadline support
to PIT/HPET but why would you run with APIC disabled ;)
2026-07-07 04:53:41 +03:00
Bananymous bcf1c6d110 BAN: Add print formatter for Span 2026-07-07 04:53:41 +03:00
Bananymous b62687f5e7 LibC: Cleanup backtrace code 2026-07-07 04:44:44 +03:00
Bananymous 7b4b5a3440 BAN: Cleanup intro_sort and quick_sort
Only recurse to the smaller partition. This prevents worst case O(n)
recursion
2026-07-07 04:43:06 +03:00
Bananymous 896bb05073 LibC: Cleanup qsort implementation
Remove random template and just make qsort be a wrapper around qsort_r

Recurse only into the smaller partition. This removes the possibility of
O(n) recursion in the worst case

Use insertion sort for ranges shorter than 16 elements.

Split qsort_swap into qsort_swap_fixed and qsort_swap_general
- fixed one handles 1, 2, 4 and 8 byte elements which can be done directly
with mov instructions
- general copies 64 bytes at a time followed by a single copy for the
  rest. the 64 byte chunk loop gets nicely optimized into sse
2026-07-07 04:39:06 +03:00
Bananymous fc10de7ccb LibC: Implement pause 2026-07-07 04:36:55 +03:00
Bananymous e8a490336c ports: Build release binaries with meson 2026-07-07 04:36:55 +03:00
Bananymous e741ab0fa1 ports: Replace libjpeg with libjpeg turbo
This is faster and adds some extensions on top of that
2026-07-07 04:36:55 +03:00
Bananymous 7d7b1f0319 ports: Add libspng port 2026-07-07 04:36:55 +03:00
Bananymous 97d26b5d4e ports: Split mesa into two packages: osmesa, glx
Now SDL and other stuff that use opengl dont have to pull X11 libraries

We now also compile glx backend with DRI instead of xlib. This allows
building EGL support as well!
2026-07-07 04:36:55 +03:00
Bananymous e78fcf63b6 ports: Update mesa 25.0.7->26.1.4
This required bringing back osmesa code from 25.0.7 which was the last
version where it was supported. Seems to work fine though
2026-07-07 04:36:55 +03:00
Bananymous bfad22211f ports: Add libdrm port 2026-07-07 03:12:39 +03:00
Bananymous 6e2542d896 ports: Add libxshfence port 2026-07-07 03:12:39 +03:00
Bananymous 659bc50aec ports: Update and dont build static freetype 2026-07-07 03:12:39 +03:00
Bananymous f6c5e3e640 ports: Update and dont build static expat 2026-07-07 03:12:39 +03:00
Bananymous 8957408890 ports: Update and dont build static libpng, libjpeg, libtiff 2026-07-07 03:12:39 +03:00
Bananymous db8544065e ports: Don't build static zlib and zstd 2026-07-07 03:12:39 +03:00