Split libmaxsi/terminal.cpp into multiple files.

This commit is contained in:
Jonas 'Sortie' Termansen 2012-08-18 23:17:12 +02:00
parent 118fc9ce9a
commit 8bac113573
4 changed files with 94 additions and 28 deletions

View File

@ -43,7 +43,9 @@ process.o \
thread.o \
ioleast.o \
winsize.o \
terminal.o \
gettermmode.o \
settermmode.o \
isatty.o \
kernelinfo.o \
init.o \
exit.o \

View File

@ -1,6 +1,6 @@
/******************************************************************************
/*******************************************************************************
COPYRIGHT(C) JONAS 'SORTIE' TERMANSEN 2012.
Copyright(C) Jonas 'Sortie' Termansen 2012.
This file is part of LibMaxsi.
@ -11,40 +11,28 @@
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.
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/>.
terminal.cpp
Allows user-space to access terminals.
gettermmode.cpp
Gets the terminal modes.
******************************************************************************/
*******************************************************************************/
#include <libmaxsi/platform.h>
#include <libmaxsi/syscall.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);
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);
}
return sys_gettermmode(fd, mode);
}
} // namespace Maxsi

38
libmaxsi/isatty.cpp Normal file
View 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
View 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