110f625f04
syscall: task: implement thread_self
2026-03-22 19:02:31 +00:00
4551e7b2e6
sched: implement various ways to end tasks and threads
2026-03-18 21:07:43 +00:00
24f9ef85bf
sched: implement user-configurable fs and gs segment base addresses
2026-03-18 21:07:05 +00:00
2a1a0cf14d
kernel: finish implementation of private and shared futexes
2026-03-18 21:02:09 +00:00
30c9c9db45
kernel: add futex definitions
2026-03-15 22:22:58 +00:00
b7f3bd77a7
libmango: update syscall definitions
2026-03-14 22:29:29 +00:00
c628390f4a
vm: replace vm-region with address-space
...
address-space is a non-recursive data structure, which contains a flat list of vm_areas representing
mapped vm-objects.
userspace programs can no longer create sub-address-spaces. instead, they can reserve portions of
the address space, and use that reserved space to create mappings.
2026-03-13 19:44:50 +00:00
f67d3a0cb9
libmango: update syscall definitions
2026-03-12 20:42:50 +00:00
2fb8f556b4
kernel: implement a generic object signalling system
2026-03-12 20:40:23 +00:00
3fd608b623
kernel: add equeue object
...
equeue is a way for the kernel to deliver events to userspace programs.
2026-03-12 20:37:51 +00:00
de520cdd2d
libmango: types: add macro to define a kern_msg_handle_t
2026-03-10 19:08:49 +00:00
1d4cb882a8
libmango: types: add ssize_t definition
2026-03-06 20:12:32 +00:00
09d292fd09
kernel: msg: include details about who sent a message
2026-03-05 21:04:02 +00:00
36c5ac7837
kernel: re-implement sending handles via port messages
2026-03-01 19:10:01 +00:00
e4de3af00d
kernel: remove support for sending kernel handles via port/channel
2026-02-26 20:53:47 +00:00
5f0654430d
syscall: add task_self, task_get_address_space, and vm_region_kill
2026-02-23 18:43:49 +00:00
37ae7aeef7
kernel: implement globally-unique object ids
2026-02-23 18:32:11 +00:00
2537ca46de
libmango: add macros for easily defining msg and iovec variables
2026-02-21 11:29:25 +00:00
6019c9307d
kernel: separate headers into kernel and user headers
...
all kernel headers have been moved from include/mango to include/kernel
and include definitions that are only relevant to kernel-space.
any definitions that are relevant to both kernel- and user-space
(i.e. type definitions, syscall IDs) have been moved to
include/mango within libmango.
2026-02-19 18:54:48 +00:00