commit dbc153f51e2af8fabe43b0c408d27f2dd6b09925 parent f23783cbb197f71f867bd9d44abfa8787a65448b Author: Russ Cox <rsc@swtch.com> Date: Wed, 30 Dec 2020 10:40:25 -0500 9term: add threadmaybackground Diffstat:
M | src/cmd/9term/9term.c | | | 6 | ++++++ |
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/src/cmd/9term/9term.c b/src/cmd/9term/9term.c @@ -47,6 +47,12 @@ usage(void) threadexitsall("usage"); } +int +threadmaybackground(void) +{ + return 1; +} + void threadmain(int argc, char *argv[]) {