Code drop from //branches/cupcake/...@124589

This commit is contained in:
The Android Open Source Project
2008-12-17 18:03:48 -08:00
parent a27d2baa0c
commit 4e468ed2eb
287 changed files with 11498 additions and 344 deletions

View File

@@ -66,22 +66,11 @@ static __inline__ int tcflush(int fd, int __queue)
return ioctl(fd, TCFLSH, (void *)(intptr_t)__queue);
}
static __inline__ pid_t tcgetpgrp(int fd)
{
pid_t _pid;
return ioctl(fd, TIOCGPGRP, &_pid) ? (pid_t)-1 : _pid;
}
static __inline__ int tcsetpgrp(int fd, pid_t _pid)
{
return ioctl(fd, TIOCSPGRP, &_pid);
}
static __inline__ pid_t tcgetsid(int fd)
{
pid_t _pid;
return ioctl(fd, TIOCGSID, &_pid) ? (pid_t)-1 : _pid;
}
}
static __inline__ int tcsendbreak(int fd, int __duration)
{