1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 06:58:11 +00:00

Add primitive FIFO and hook it up to sys$pipe().

It's now possible to do this in bash:

cat kernel.map | fgrep List

This is very cool! :^)
This commit is contained in:
Andreas Kling 2018-11-12 01:28:46 +01:00
parent 18e3ddf605
commit f1404aa948
13 changed files with 305 additions and 22 deletions

View file

@ -43,7 +43,7 @@ ssize_t Console::write(const byte* data, size_t size)
return 0;
for (size_t i = 0; i < size; ++i)
putChar(data[i]);
return 0;
return size;
}
void Console::putChar(char ch)