|
eb3fb04734
|
libc: Add system()
continuous-integration/drone/push Build is passing
|
2023-04-08 12:18:52 +02:00 |
|
|
95a93a7f66
|
sh: Parse arguments
|
2023-04-08 12:09:43 +02:00 |
|
|
0eab03848c
|
sh: Remove unused include
continuous-integration/drone/push Build is passing
|
2023-04-07 15:41:37 +02:00 |
|
|
9bb1720cca
|
libc: Add execvp() and execvpe()
continuous-integration/drone/push Build is passing
|
2023-04-07 15:39:10 +02:00 |
|
|
fe348d56c0
|
String+StringView: Add split()
|
2023-04-07 15:14:46 +02:00 |
|
|
3a28771520
|
kernel+libc+apps: Add support for environment variables
|
2023-04-07 15:03:38 +02:00 |
|
|
3ef484b3f3
|
kernel: Add missing include
|
2023-04-07 14:37:06 +02:00 |
|
|
3a70accdeb
|
kernel: Move copy_string_vector_to_userspace to ThreadImage
|
2023-04-07 14:36:24 +02:00 |
|
|
b22bea84ec
|
kernel: Copy process name on fork()
continuous-integration/drone/push Build is passing
|
2023-04-07 14:02:36 +02:00 |
|
|
0f678f845c
|
String: Add operator=
continuous-integration/drone/push Build is passing
|
2023-04-07 12:14:21 +02:00 |
|
|
4cac49038c
|
sh: Use StringBuilder instead of C-like manual joining
|
2023-04-07 12:11:28 +02:00 |
|
|
7b8260f3f6
|
all: Enable/disable debug symbols/optimization in COMMON_FLAGS
|
2023-04-07 12:07:08 +02:00 |
|
|
d07b00a892
|
all: Move all warning flags to a common CMake variable
|
2023-04-07 12:02:49 +02:00 |
|
|
4e48d024d9
|
libluna: Add StringBuilder
|
2023-04-07 11:53:52 +02:00 |
|
|
4c0dff9b32
|
libos: Remove a stray os-freestanding from the CMakeLists
|
2023-04-07 11:53:41 +02:00 |
|
|
a9b5cf99f7
|
UBSAN: Add __ubsan_handle_nonnull_arg
|
2023-04-07 11:53:19 +02:00 |
|
|
8e8706be27
|
sh: Use try_move instead of try_set
Looks like Vector does not like being copied. I'll have to look into that later...
|
2023-04-07 11:52:59 +02:00 |
|
|
1210d2b7da
|
libluna: Add/remove some const qualifiers
|
2023-04-07 11:52:20 +02:00 |
|
|
1c6fd95a70
|
Result: Add from_syscall()
|
2023-04-07 10:56:49 +02:00 |
|
|
cb67b41a39
|
libc: Set errno in mbstowcs() and wcstombs()
|
2023-04-07 10:55:22 +02:00 |
|
|
1f0e185904
|
kernel: Use try_set_value(_or_error) in various places
|
2023-04-07 10:55:04 +02:00 |
|
|
baa2296aed
|
Result: Add try_{set,move}_value_or_error
|
2023-04-07 10:43:29 +02:00 |
|
|
c752b2b343
|
libos: Put everything under the os namespace
|
2023-04-07 10:40:46 +02:00 |
|
|
f1e2937528
|
ArgumentParser: Parse short value arguments
|
2023-04-07 10:37:15 +02:00 |
|
|
9b8996adeb
|
libluna: Add String::format
|
2023-04-07 10:37:00 +02:00 |
|
|
e6c4ceb18f
|
Add clause about Unix to README.md
continuous-integration/drone/push Build is passing
|
2023-04-04 20:57:55 +00:00 |
|
|
1ec2f39747
|
Update README.md
continuous-integration/drone/push Build is passing
|
2023-04-04 20:52:28 +00:00 |
|
|
ed0727332b
|
x86_64/CPU: Assign a proper IRQ number to the keyboard interrupt
continuous-integration/drone/push Build is passing
Ah, the dangers of copy-and-paste...
|
2023-04-04 12:13:34 +00:00 |
|
|
e241c70aad
|
Vector: Call destructors on deallocation
continuous-integration/drone/push Build is passing
I hate the Gitea web editor on a phone.
|
2023-04-01 08:56:21 +00:00 |
|
|
e99ba4df36
|
date: Make the --date option require a value
continuous-integration/drone/push Build is passing
|
2023-03-30 21:39:42 +02:00 |
|
|
429e4c9f61
|
libc: Disable -pedantic
continuous-integration/drone/push Build is passing
It does not like TRY().
|
2023-03-30 21:31:35 +02:00 |
|
|
47ee52dc0a
|
libc: Add execl()
continuous-integration/drone/push Build is failing
|
2023-03-30 21:28:39 +02:00 |
|
|
64bca780a7
|
kernel: Add /dev/zero
continuous-integration/drone/push Build is passing
|
2023-03-30 21:19:16 +02:00 |
|
|
2fbc6105d7
|
kernel+libc: Add O_DIRECTORY and use it in opendir()
continuous-integration/drone/push Build is passing
|
2023-03-29 22:23:52 +02:00 |
|
|
61f969c60c
|
ls: Explicitly initialize booleans to false
|
2023-03-29 22:19:53 +02:00 |
|
|
43f90c4f88
|
cat: Use ArgumentParser
continuous-integration/drone/push Build is passing
|
2023-03-29 22:10:51 +02:00 |
|
|
e6645ed607
|
StringView+apps: Add a _sv literal suffix to not confuse function overloads
C++ was being naughty and implicitly casting our fallback const char* to a boolean.
|
2023-03-29 22:10:01 +02:00 |
|
|
e1c03150f8
|
ArgumentParser: Return leftover arguments from parse()
|
2023-03-29 22:07:42 +02:00 |
|
|
75c48e996a
|
ArgumentParser+date: Add value arguments
continuous-integration/drone/push Build is passing
|
2023-03-29 21:46:07 +02:00 |
|
|
d68f6bd76b
|
ArgumentParser+ls: Add switch arguments
continuous-integration/drone/push Build is passing
|
2023-03-29 19:25:11 +02:00 |
|
|
a164dcc160
|
libos: Add libos + very basic ArgumentParser
continuous-integration/drone/push Build is passing
libluna but for stuff that interests only userspace, like an argument parser or files or stuff like that.
|
2023-03-29 18:27:02 +02:00 |
|
|
724dab636c
|
apps: Switch to C++
continuous-integration/drone/push Build is passing
|
2023-03-29 17:56:56 +02:00 |
|
|
ef01f187c3
|
libluna: Add StringView
continuous-integration/drone/push Build is passing
|
2023-03-29 17:43:10 +02:00 |
|
|
01813ff0dd
|
String: Rename from_string_literal to from_cstring
|
2023-03-29 17:34:30 +02:00 |
|
|
ee60ab78b3
|
String: is_empty + proper initialization
|
2023-03-29 17:32:53 +02:00 |
|
|
b6c35124d6
|
libluna: OwnedStringView -> String
Also with inline storage!
|
2023-03-29 17:28:22 +02:00 |
|
|
7b0b3dabc4
|
apps: Add ls
continuous-integration/drone/push Build is passing
|
2023-03-29 01:07:58 +02:00 |
|
|
3e30f0a88c
|
libc: Add opendir, readdir and closedir
|
2023-03-29 01:06:57 +02:00 |
|
|
5623f3c699
|
tmpfs: Set the mode of the root directory on creation
|
2023-03-29 01:06:26 +02:00 |
|
|
0320ffb485
|
Vector: Fix operator[]
Istg Vector has a curse or something, the annoying and inexplicable bugs always end up in Vector.
|
2023-03-29 01:05:30 +02:00 |
|