mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 09:07:45 +00:00
Add strsignal() and improve sharing signal numbers between LibC and kernel.
This commit is contained in:
parent
8d1f8b2518
commit
7c3746592b
15 changed files with 153 additions and 60 deletions
|
@ -14,6 +14,7 @@
|
|||
#include "RTC.h"
|
||||
#include "ProcFileSystem.h"
|
||||
#include <AK/StdLib.h>
|
||||
#include <LibC/signal_numbers.h>
|
||||
|
||||
//#define DEBUG_IO
|
||||
//#define TASK_DEBUG
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
#include "TTY.h"
|
||||
#include "Process.h"
|
||||
#include <LibC/signal_numbers.h>
|
||||
|
||||
TTY::TTY(unsigned major, unsigned minor)
|
||||
: CharacterDevice(major, minor)
|
||||
|
|
|
@ -23,6 +23,7 @@ cp ../Userland/ft2 mnt/bin/ft2
|
|||
cp ../Userland/mm mnt/bin/mm
|
||||
cp ../Userland/kill mnt/bin/kill
|
||||
cp ../Userland/tty mnt/bin/tty
|
||||
cp ../Userland/strsignal mnt/bin/strsignal
|
||||
sh sync-local.sh
|
||||
cp kernel.map mnt/
|
||||
umount mnt
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue