From 08f3210dcfce253e4b1be5f112d8af0f915ac3df Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Mon, 7 Mar 2005 22:07:26 +0000 Subject: [PATCH] Added empty implementations of tc{get,set}pgrp(). git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11615 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/kernel/libroot/posix/termios.c | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/kernel/libroot/posix/termios.c b/src/kernel/libroot/posix/termios.c index 0cda2b7049..5e64886f5b 100644 --- a/src/kernel/libroot/posix/termios.c +++ b/src/kernel/libroot/posix/termios.c @@ -134,3 +134,20 @@ cfsetospeed(struct termios *termios, speed_t speed) return 0; } + +int +tcsetpgrp(int fd, pid_t pgrpid) +{ + // ToDo: Implement! + errno = EINVAL; + return -1; +} + + +pid_t +tcgetpgrp(int fd) +{ + // ToDo: Implement! + errno = EINVAL; + return -1; +}