Added empty implementations of tc{get,set}pgrp().
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@11615 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
5141596a69
commit
08f3210dcf
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user