Daniel Bertalan
87d548c520
LibC: Make SIZE_MAX be understood by the preprocessor
...
POSIX mandates that the macros contained in `stdint.h` be suitable for
use by the C preprocessor.
If we write `((size_t)-1)`, the C preprocessor will just skip the cast
and treat the value as `-1`. This means that we end up taking the wrong
branch in an `#if` directive like `#if SIZE_MAX > UINT32_MAX`.
This fixes building the LLVM port on i686.
2021-11-28 09:38:57 -08:00
Daniel Bertalan
23adb7449f
LibC: Fix stdint.h macros on x86_64
...
x86_64 is an LP64 platform, so its `uint64_t` type is defined to be
`unsigned long`, not `unsigned long long` like on i686. This means that
the `UL` literal suffix should be used instead of `ULL`.
Furthermore, `uintptr_t` is 64 bits wide on x86_64, so defining
`UINTPTR_MAX` to be `UINT32_MAX` is also not correct.
2021-11-28 09:38:57 -08:00
Daniel Bertalan
4c0d868bb6
LibC: Add definition for ENOTRECOVERABLE
...
This is used by the LLVM port.
2021-11-28 09:38:57 -08:00
Daniel Bertalan
b1f6bfca7f
Toolchain/Clang: Support using libstdc++
as the C++ standard library
...
This will come in handy if we want to use the LLVM port with a GNU host
compiler.
As of version 13, libc++ uses `__attribute__((using_if_exists))` to
import global LibC functions into the `std` namespace, which allows some
symbols to be absent. GCC does not support this attribute, so it fails
to build libc++ due to some obscure `wchar.h` functions. This means that
cross-compiling libc++ is not possible; and on-target builds would be
tedious, so we'll be better off using the toolchain's `libstdc++`.
2021-11-28 09:38:57 -08:00
Daniel Bertalan
ce3b219021
Toolchain/Clang: Allow setting a default unwind library
...
This will let us use `libgcc` for unwinding when we build the LLVM port
with the GNU toolchain.
2021-11-28 09:38:57 -08:00
Daniel Bertalan
ea8335cda1
Toolchain/Clang: Pick up includes when running inside Serenity
...
The toolchain should work without setting `--sysroot` when we build
inside SerenityOS.
2021-11-28 09:38:57 -08:00
Daniel Bertalan
91546f42f3
Toolchain/Clang: Add support for -static-libstdc++
...
This option is already used by our GNU toolchain to avoid creating a
circular dependency between LibC and `lib(std)c++`.
2021-11-28 09:38:57 -08:00
Jelle Raaijmakers
497180a650
Kernel: Ignore AC97 non-completion interrupts
...
Fixes #11094
2021-11-28 19:26:22 +02:00
Jelle Raaijmakers
689ad0752c
Kernel: Add AC97_DEBUG macro
2021-11-28 19:26:22 +02:00
Jelle Raaijmakers
bb58f6ccab
LibGL: Implement glScissor()
2021-11-28 09:20:58 -08:00
Sam Atkins
6dd2ebfe8e
Kernel: Log when a process exits with an unlocked veil
...
This catches applications that make use of `unveil()`, but then do not
lock the veil with `unveil(nullptr, nullptr)`.
2021-11-28 09:16:37 -08:00
Lady Gegga
611062df55
Base: Add Lisu Supplement characters to font Katica Regular 10
...
11FB https://www.unicode.org/charts/PDF/U11FB0.pdf
2021-11-28 09:16:21 -08:00
Lady Gegga
4a24b99173
Base: Add Toto characters to font Katica Regular 10
...
1E290–1E2BF https://www.unicode.org/charts/PDF/U1E290.pdf
2021-11-28 09:16:21 -08:00
Ali Mohammad Pur
0652774783
Base: Add a test page for async functions + XMLHttpRequest
2021-11-28 13:28:01 +00:00
Ali Mohammad Pur
ccf713bf23
LibJS: Spin the event loop while waiting for async completion in await
2021-11-28 13:28:01 +00:00
Linus Groh
f7ba81ac52
LibJS: Implement parsing of TemporalDurationString
2021-11-28 10:32:28 +00:00
Andreas Kling
60c132d7d3
LibGUI: Move GUI::SettingsWindow setup out of the constructor
...
In order to propagate errors that occur during UI setup, we have to move
all that logic out of widget/window subclass constructors. This is a
first attempt at doing that, for GUI::SettingsWindow.
2021-11-28 08:54:22 +01:00
Andreas Kling
56c4f0aff5
LibGUI: Add fallible variants of the GUI::Layout add/insert APIs
2021-11-28 08:54:22 +01:00
Andreas Kling
acd4cc97fc
KeyboardSettings: Remove some unnecessary pledge promises
...
This program doesn't need to create or write files directly.
2021-11-28 08:54:22 +01:00
Liav A
8abc4fa8c2
Kernel/Audio: Implement 2 correctness fixes in AC97
...
The fixes are:
1. Don't copy PCI::DeviceIdentifier during construction. This is a heavy
structure to copy so we definitely don't want to do that. Instead, use
a const reference to it like what happens in other parts in the Kernel.
2. Declare the constructor as explicit to avoid construction errors.
2021-11-27 23:43:56 -08:00
Andreas Kling
45844f9338
LibGUI: Make GUI::SettingsWindow::add_tab() return ErrorOr
...
This allows us to use TRY() when creating settings UI.
2021-11-28 08:10:53 +01:00
Andreas Kling
7c19e86a50
TerminalSettings: Remove unnecessary pledges and unveils
2021-11-28 08:10:53 +01:00
Andreas Kling
6b862d5063
TerminalSettings: Port to LibMain :^)
2021-11-28 08:10:53 +01:00
Andreas Kling
8359975ff3
LibGUI: Make GUI::TabWidget tab creation APIs take String
...
Ultimately we'd like the caller to provide a String if possible (instead
of a StringView) as we're going to end up storing it.
2021-11-28 08:10:53 +01:00
Andreas Kling
8a11e986e5
MailSettings: Port to LibMain :^)
2021-11-28 08:10:53 +01:00
Andreas Kling
984cf1fe7a
DisplaySettings: Port to LibMain :^)
2021-11-28 08:10:53 +01:00
Emir Sarı
343de29652
Keymaps: Add Turkish-F Keymap
2021-11-28 08:06:28 +01:00
Liav A
ed5a4f2938
Kernel/Storage: Restore booting from MBR partitions functionality
...
We had such functionality in the past, but it was regressed and now is
restored.
2021-11-28 08:05:58 +01:00
Brian Gianforcaro
cf4fa936be
Everywhere: Use default execpromises argument for Core::System::pledge
2021-11-28 08:04:57 +01:00
Brian Gianforcaro
44ffe3e5bb
LibCore: Allow System::pledge execpromises argument to be omitted
...
It appears that we don't have almost no cases of a callers passing
exec promises when they call `pledge()`. To simplify the code a bit we
add a default parameter that will pass nullptr for us to `pledge()`.
2021-11-28 08:04:57 +01:00
Brian Gianforcaro
fcc00c9a27
LibCore+cat: Switch Core::System::read/write to take a Span of bytes
...
In the spirit of the Core::System name space having "modern" facades
for classically C functions / Kernel interfaces, it seems appropriate
that we should take Span's of data instead of raw pointer + length
arguments.
2021-11-28 08:04:57 +01:00
Brian Gianforcaro
eb896aa33e
Settings: Convert to TRY + serenity_main(..)
2021-11-28 08:04:57 +01:00
Linus Groh
908d943e85
LibJS: Parse TemporalInstantString as part of TemporalCalendarString
2021-11-27 23:54:38 +00:00
Lady Gegga
a94223afd0
Base: Add Lisu characters to font Katica Regular 10
...
A4D0–A4FF https://www.unicode.org/charts/PDF/UA4D0.pdf
2021-11-27 14:59:15 -08:00
Linus Groh
8f99c05f97
LibJS: Implement Temporal.PlainYearMonth.prototype.since()
2021-11-27 19:11:31 +00:00
Linus Groh
bdd2c357fd
LibJS: Implement Temporal.PlainYearMonth.prototype.until()
2021-11-27 19:11:31 +00:00
Linus Groh
6f2e0b3355
LibJS: Implement Temporal.PlainYearMonth.prototype.subtract()
2021-11-27 17:48:04 +00:00
Linus Groh
acbcd64cdc
LibJS: Implement Temporal.PlainYearMonth.prototype.add()
2021-11-27 17:48:04 +00:00
Pedro Pereira
d748f2bea2
Spider: TRY() all the things in serenity_main() :^)
2021-11-27 17:18:44 +01:00
Pedro Pereira
206847c37d
Solitaire: TRY() all the things in serenity_main() :^)
2021-11-27 17:18:44 +01:00
Pedro Pereira
d2e9b122e0
Snake: TRY() all the things in serenity_main() :^)
2021-11-27 17:18:44 +01:00
Pedro Pereira
498d8bf1d7
Pong: TRY() all the things in serenity_main() :^)
2021-11-27 17:18:44 +01:00
Pedro Pereira
aa2bc6fd47
Minesweeper: TRY() all the things in serenity_main() :^)
2021-11-27 17:18:44 +01:00
Pedro Pereira
1211a3a3f3
Hearts: TRY() all the things in serenity_main() :^)
2021-11-27 17:18:44 +01:00
Pedro Pereira
ee3b14fc38
GameOfLife: TRY() all the things in serenity_main() :^)
2021-11-27 17:18:44 +01:00
Pedro Pereira
2f5f53d1cf
FlappyBug: TRY() all the things in serenity_main() :^)
2021-11-27 17:18:44 +01:00
Pedro Pereira
45e29d58e2
Chess: TRY() all the things in serenity_main() :^)
2021-11-27 17:18:44 +01:00
Pedro Pereira
5caa9311d7
Breakout: TRY() all the things in serenity_main() :^)
2021-11-27 17:18:44 +01:00
Pedro Pereira
d56e4d5145
2048: TRY() all the things in serenity_main() :^)
2021-11-27 17:18:44 +01:00
Lady Gegga
e91cf53e67
Base: Add Lydian and NKo characters to font Katica Regular 10
...
10920–1093F, 07C0–07FF
2021-11-27 15:01:55 +00:00