// Most of termios was missing in the platform until L, but available as inlines in the NDK. // We share definitions with the NDK to avoid bugs (https://github.com/android-ndk/ndk/issues/441). #define __BIONIC_TERMIOS_INLINE /* Out of line. */ #include <bits/termios_inlines.h>
// POSIX added a couple more functions much later, so do the same for them. #define __BIONIC_TERMIOS_WINSIZE_INLINE /* Out of line. */ #include <bits/termios_winsize_inlines.h>
// Actually declared in <unistd.h>, present on all API levels.
pid_t tcgetpgrp(int fd) {
pid_t pid; return (ioctl(fd, TIOCGPGRP, &pid) == -1) ? -1 : pid;
}
// Actually declared in <unistd.h>, present on all API levels. int tcsetpgrp(int fd, pid_t pid) { return ioctl(fd, TIOCSPGRP, &pid);
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.11 Sekunden
(vorverarbeitet am 2026-06-28)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.