1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 14:57:35 +00:00

Add ioctl() and reimplement tcsetpgrp/tcsetpgrp as ioctls.

This commit is contained in:
Andreas Kling 2018-11-16 13:11:21 +01:00
parent 2529925fe9
commit c99f8af66d
16 changed files with 94 additions and 45 deletions

7
LibC/sys/ioctl_numbers.h Normal file
View file

@ -0,0 +1,7 @@
#pragma once
enum IOCtlNumber {
TIOCGPGRP,
TIOCSPGRP,
};