• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <unistd.h>
2 #include <termios.h>
3 #include <sys/ioctl.h>
4 #include <unsupported_api.h>
5 
tcgetpgrp(int fd)6 pid_t tcgetpgrp(int fd)
7 {
8 	int pgrp;
9 	unsupported_api(__FUNCTION__);
10 	if (ioctl(fd, TIOCGPGRP, &pgrp) < 0)
11 		return -1;
12 	return pgrp;
13 }
14