|
d96ff92461
|
libc: Add borrowed strtod implementation
|
2023-08-08 15:17:25 +02:00 |
|
|
bfb76b5625
|
kernel: Properly expose block device sizes with the new metadata API
|
2023-08-08 15:17:08 +02:00 |
|
|
8c13513bf4
|
libc: Add strcoll()
continuous-integration/drone/push Build is passing
|
2023-08-08 14:40:14 +02:00 |
|
|
37e9b25b62
|
apps: Add touch
continuous-integration/drone/push Build is passing
|
2023-08-08 14:34:58 +02:00 |
|
|
a92077d311
|
kernel+libc: Add all variants of utime
continuous-integration/drone/push Build is passing
|
2023-08-08 14:14:35 +02:00 |
|
|
1481a4736a
|
tmpfs: Update mtime on writes
continuous-integration/drone/push Build is passing
|
2023-08-08 13:36:25 +02:00 |
|
|
4195e7f206
|
kernel+libc+stat: Add support for file times
continuous-integration/drone/push Build is passing
The modification time is not updated though.
|
2023-08-08 13:33:40 +02:00 |
|
|
159c05c064
|
libluna: Add max() and min()
continuous-integration/drone/push Build is passing
|
2023-08-08 12:39:03 +02:00 |
|
|
b63a8ff245
|
libluna: Move get_blocks_from_size to a new header and call it ceil_div instead
continuous-integration/drone/push Build is passing
|
2023-08-08 11:58:33 +02:00 |
|
|
917203ef11
|
kernel: Run the init function in a separate block to free everything before kernel_exit is called
continuous-integration/drone/push Build is passing
|
2023-08-08 10:44:18 +02:00 |
|
|
826be882a9
|
kernel: Interrupt syscalls before exiting because of a signal
Closes #40.
|
2023-08-08 10:41:46 +02:00 |
|
|
198935eb30
|
libc: Reset the read buffer even when read() returns an error
This fixes the same data being read multiple times if an error was returned
|
2023-08-08 10:39:15 +02:00 |
|
|
7c254e5e15
|
kernel: Properly check memory bounds in strdup_from_user()
continuous-integration/drone/push Build is passing
Missed this one in 097353e779 .
|
2023-08-08 10:27:19 +02:00 |
|
|
2e63b93e48
|
libos: Remove debug statements from Process::spawn()
continuous-integration/drone/push Build is passing
|
2023-08-07 22:53:37 +02:00 |
|
|
77ebdda2e0
|
libos: Add Process::spawn()
continuous-integration/drone/push Build is passing
|
2023-08-07 22:49:12 +02:00 |
|
|
097353e779
|
kernel: Properly check memory bounds while touching user memory
Before this patch, one byte of each page was being accessed without checking the page's permissions.
|
2023-08-07 22:49:00 +02:00 |
|
|
10c892d606
|
kernel: Allow null envp in execve()
As far as I know, this is not standard, but I'm doing this as a convenience for programs using exec() right after clearenv().
|
2023-08-07 22:48:21 +02:00 |
|
|
f45734c61d
|
kernel/ATA: Stop storing ATA::Drive in a separate shared pointer
continuous-integration/drone/push Build is passing
|
2023-08-07 19:22:57 +02:00 |
|
|
bc20e1a31b
|
kernel: Store FD_CLOEXEC in the file descriptor itself
continuous-integration/drone/push Build is passing
Closes #39.
|
2023-08-03 17:47:18 +02:00 |
|
|
b01aa72f17
|
libc+init+shmem-test: Add POSIX shared memory objects
continuous-integration/drone/push Build is passing
|
2023-08-03 10:32:52 +02:00 |
|
|
d41fb85466
|
libluna/SharedPtr: Count references with separately created objects properly
|
2023-08-03 10:32:22 +02:00 |
|
|
5aa042a5f2
|
kernel: Add constructors to SharedMemory
|
2023-08-03 10:31:58 +02:00 |
|
|
f150425222
|
kernel: Create a new shared memory object if the old one was lost
|
2023-08-03 10:31:29 +02:00 |
|
|
842b212685
|
kernel: Set a SharedMemory object's prot value
|
2023-08-03 10:30:43 +02:00 |
|
|
641b65da0f
|
kernel: Take devices into account in SharedMemory::free()
|
2023-08-03 09:33:10 +02:00 |
|
|
bfcca3a220
|
gol: Use memory-mapped IO
continuous-integration/drone/push Build is passing
|
2023-08-03 09:26:35 +02:00 |
|
|
b5d146b492
|
kernel/mmap: Fix some parameters
|
2023-08-03 09:26:21 +02:00 |
|
|
b447c1a261
|
kernel: Set the shmem->inode field in query_shared_memory
|
2023-08-03 09:25:56 +02:00 |
|
|
f8e86b3b01
|
fix
|
2023-08-03 09:25:38 +02:00 |
|
|
d8f6af99b8
|
kernel: Let devices use shared memory
|
2023-08-03 09:25:23 +02:00 |
|
|
c5e24e478f
|
kernel+libc: Add truncate and ftruncate
continuous-integration/drone/push Build is passing
|
2023-08-03 08:47:37 +02:00 |
|
|
53d9f5c6fc
|
libc: Add msync wrapper
continuous-integration/drone/push Build is passing
|
2023-08-02 22:44:54 +02:00 |
|
|
84c1ac4cee
|
kernel: Add msync
continuous-integration/drone/push Build is passing
|
2023-08-02 22:39:07 +02:00 |
|
|
7293d47bf0
|
apps: Add shmem-test
continuous-integration/drone/push Build is passing
|
2023-08-02 22:20:05 +02:00 |
|
|
f66b0497cf
|
libc: Add support for mmap()'s new syscall format
|
2023-08-02 22:20:05 +02:00 |
|
|
2572695c8d
|
kernel: Support mapping shared memory using mmap()
|
2023-08-02 22:20:05 +02:00 |
|
|
9443551d71
|
kernel: Add shared memory
|
2023-08-02 22:20:05 +02:00 |
|
|
b4527786d4
|
kernel/MMU: Don't copy pages on clone and allow manipulating other page directories
|
2023-08-02 22:17:32 +02:00 |
|
|
3aaf1c5d84
|
apps: Rename mouse to input, read keyboard packets as well
continuous-integration/drone/push Build is passing
|
2023-08-02 17:20:26 +02:00 |
|
|
4794d0dfef
|
kernel: Add a keyboard device for graphical session
|
2023-08-02 17:20:13 +02:00 |
|
|
9c1e275f34
|
kernel: Make /dev/mouse read-write only for root
|
2023-08-02 17:19:37 +02:00 |
|
|
6593f9241b
|
libc: Add wrapper for poll()
|
2023-08-02 17:19:16 +02:00 |
|
|
df4227eab8
|
kernel: Make the poll() system call actually work
|
2023-08-02 17:18:38 +02:00 |
|
|
f8cb6e03df
|
kernel: Allow turning off the TTY by setting it to graphical mode
continuous-integration/drone/push Build is passing
|
2023-08-02 15:16:10 +02:00 |
|
|
207d901de8
|
kernel+libc: Add the poll() syscall
continuous-integration/drone/push Build is passing
|
2023-08-02 14:48:20 +02:00 |
|
|
df77fc8de8
|
libluna: Remove make_array() and destroy_array()
Placement new on arrays is a bit unreliable and could cause out-of-bounds data accesses.
|
2023-08-02 14:47:58 +02:00 |
|
|
b1fb6dee8a
|
login: Create a new process group to log in
|
2023-08-02 14:47:13 +02:00 |
|
|
aac8280e8a
|
libc+libos: Properly propagate errors through fgetc() and File::getchar()
This restores proper ^C behavior in the shell.
|
2023-08-02 14:46:47 +02:00 |
|
|
d0ceec6952
|
mouse: Show textual description of buttons
continuous-integration/drone/push Build is passing
|
2023-08-02 13:58:17 +02:00 |
|
|
7983d63b8e
|
libos: Add documentation for os::File::BufferingMode
continuous-integration/drone/push Build is passing
|
2023-08-02 13:15:51 +02:00 |
|