mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Split libmaxsi/terminal.cpp into multiple files.
This commit is contained in:
parent
118fc9ce9a
commit
8bac113573
4 changed files with 94 additions and 28 deletions
|
@ -43,7 +43,9 @@ process.o \
|
||||||
thread.o \
|
thread.o \
|
||||||
ioleast.o \
|
ioleast.o \
|
||||||
winsize.o \
|
winsize.o \
|
||||||
terminal.o \
|
gettermmode.o \
|
||||||
|
settermmode.o \
|
||||||
|
isatty.o \
|
||||||
kernelinfo.o \
|
kernelinfo.o \
|
||||||
init.o \
|
init.o \
|
||||||
exit.o \
|
exit.o \
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/******************************************************************************
|
/*******************************************************************************
|
||||||
|
|
||||||
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2012.
|
Copyright(C) Jonas 'Sortie' Termansen 2012.
|
||||||
|
|
||||||
This file is part of LibMaxsi.
|
This file is part of LibMaxsi.
|
||||||
|
|
||||||
|
@ -11,40 +11,28 @@
|
||||||
|
|
||||||
LibMaxsi is distributed in the hope that it will be useful, but WITHOUT ANY
|
LibMaxsi is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for
|
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
||||||
more details.
|
details.
|
||||||
|
|
||||||
You should have received a copy of the GNU Lesser General Public License
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
along with LibMaxsi. If not, see <http://www.gnu.org/licenses/>.
|
along with LibMaxsi. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
terminal.cpp
|
gettermmode.cpp
|
||||||
Allows user-space to access terminals.
|
Gets the terminal modes.
|
||||||
|
|
||||||
******************************************************************************/
|
*******************************************************************************/
|
||||||
|
|
||||||
#include <libmaxsi/platform.h>
|
#include <libmaxsi/platform.h>
|
||||||
#include <libmaxsi/syscall.h>
|
#include <libmaxsi/syscall.h>
|
||||||
#include <sys/termmode.h>
|
#include <sys/termmode.h>
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
namespace Maxsi
|
namespace Maxsi {
|
||||||
|
|
||||||
|
DEFN_SYSCALL2(int, sys_gettermmode, SYSCALL_GETTERMMODE, int, unsigned*);
|
||||||
|
|
||||||
|
extern "C" int gettermmode(int fd, unsigned* mode)
|
||||||
{
|
{
|
||||||
DEFN_SYSCALL2(int, SysSetTermMode, SYSCALL_SETTERMMODE, int, unsigned);
|
return sys_gettermmode(fd, mode);
|
||||||
DEFN_SYSCALL2(int, SysGetTermMode, SYSCALL_GETTERMMODE, int, unsigned*);
|
|
||||||
DEFN_SYSCALL1(int, SysIsATTY, SYSCALL_ISATTY, int);
|
|
||||||
|
|
||||||
extern "C" int settermmode(int fd, unsigned mode)
|
|
||||||
{
|
|
||||||
return SysSetTermMode(fd, mode);
|
|
||||||
}
|
|
||||||
|
|
||||||
extern "C" int gettermmode(int fd, unsigned* mode)
|
|
||||||
{
|
|
||||||
return SysGetTermMode(fd, mode);
|
|
||||||
}
|
|
||||||
|
|
||||||
extern "C" int isatty(int fd)
|
|
||||||
{
|
|
||||||
return SysIsATTY(fd);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
} // namespace Maxsi
|
38
libmaxsi/isatty.cpp
Normal file
38
libmaxsi/isatty.cpp
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
|
||||||
|
Copyright(C) Jonas 'Sortie' Termansen 2012.
|
||||||
|
|
||||||
|
This file is part of LibMaxsi.
|
||||||
|
|
||||||
|
LibMaxsi is free software: you can redistribute it and/or modify it under
|
||||||
|
the terms of the GNU Lesser General Public License as published by the Free
|
||||||
|
Software Foundation, either version 3 of the License, or (at your option)
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
LibMaxsi is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
||||||
|
details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
|
along with LibMaxsi. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
isatty.cpp
|
||||||
|
Queries whether a file descriptor is associated with a terminal.
|
||||||
|
|
||||||
|
*******************************************************************************/
|
||||||
|
|
||||||
|
#include <libmaxsi/platform.h>
|
||||||
|
#include <libmaxsi/syscall.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
|
namespace Maxsi {
|
||||||
|
|
||||||
|
DEFN_SYSCALL1(int, sys_isatty, SYSCALL_ISATTY, int);
|
||||||
|
|
||||||
|
extern "C" int isatty(int fd)
|
||||||
|
{
|
||||||
|
return sys_isatty(fd);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace Maxsi
|
38
libmaxsi/settermmode.cpp
Normal file
38
libmaxsi/settermmode.cpp
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
/*******************************************************************************
|
||||||
|
|
||||||
|
Copyright(C) Jonas 'Sortie' Termansen 2012.
|
||||||
|
|
||||||
|
This file is part of LibMaxsi.
|
||||||
|
|
||||||
|
LibMaxsi is free software: you can redistribute it and/or modify it under
|
||||||
|
the terms of the GNU Lesser General Public License as published by the Free
|
||||||
|
Software Foundation, either version 3 of the License, or (at your option)
|
||||||
|
any later version.
|
||||||
|
|
||||||
|
LibMaxsi is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||||
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
|
||||||
|
details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public License
|
||||||
|
along with LibMaxsi. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
settermmode.cpp
|
||||||
|
Sets the terminal modes.
|
||||||
|
|
||||||
|
*******************************************************************************/
|
||||||
|
|
||||||
|
#include <libmaxsi/platform.h>
|
||||||
|
#include <libmaxsi/syscall.h>
|
||||||
|
#include <sys/termmode.h>
|
||||||
|
|
||||||
|
namespace Maxsi {
|
||||||
|
|
||||||
|
DEFN_SYSCALL2(int, sys_settermmode, SYSCALL_SETTERMMODE, int, unsigned);
|
||||||
|
|
||||||
|
extern "C" int settermmode(int fd, unsigned mode)
|
||||||
|
{
|
||||||
|
return sys_settermmode(fd, mode);
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace Maxsi
|
Loading…
Add table
Reference in a new issue