mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
72193f12c9
The /dev/tty acts as a replica for the current thread group's controlling terminal. In a follow-up, I will make /dev/tty work for donated host ttys. Updates #10925 PiperOrigin-RevId: 681629892
19 lines
386 B
Python
19 lines
386 B
Python
load("//tools:defs.bzl", "go_library")
|
|
|
|
package(default_applicable_licenses = ["//:license"])
|
|
|
|
licenses(["notice"])
|
|
|
|
go_library(
|
|
name = "ttydev",
|
|
srcs = ["ttydev.go"],
|
|
visibility = ["//pkg/sentry:internal"],
|
|
deps = [
|
|
"//pkg/abi/linux",
|
|
"//pkg/context",
|
|
"//pkg/errors/linuxerr",
|
|
"//pkg/sentry/kernel",
|
|
"//pkg/sentry/vfs",
|
|
],
|
|
)
|