Age | Commit message (Collapse) | Author |
|
Make Userland and Tests users just include signal.h, and move Kernel
users to the new API file.
|
|
Some header files use __BEGIN_DECLS without including sys/cdefs.h.
This causes issues for C code that compiles against these headers,
which may occur with Ports.
|
|
|
|
We currently don't really populate most of the fields, but that can
wait :^)
|
|
This is done internally by just calling the more modern sigtimedwait
syscall and then massaging the results to fit sigwait's interface.
|
|
This is implemented as a simple wrapper around sigtimedwait()
|
|
This includes a new Thread::Blocker called SignalBlocker which blocks
until a signal of a matching type is pending. The current Blocker
implementation in the Kernel is very complicated, but cleaning it up is
a different yak for a different day.
|
|
This is required for compiling wine for serenity
|
|
|
|
|
|
|
|
|
|
SPDX License Identifiers are a more compact / standardized
way of representing file license information.
See: https://spdx.dev/resources/use/#identifiers
This was done with the `ambr` search and replace tool.
ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
|
|
|