mirror of
https://github.com/genodelabs/genode.git
synced 2025-05-05 10:13:15 +00:00
The pthread API is considered a standard feature of libc so better to simply merge it with the libc. Pthreads are in fact already a part of the libc in the form of weak symbols. This merger is also a prerequisite for better integrating pthreads with the libc I/O task. Fix #3054
TCP terminal is a service that provides Genode's terminal-session interface via individual TCP connections. It supports multiple clients. The TCP port to be used for each client is defined in as session policy in the config node of the TCP server: ! <config> ! <policy label_prefix="client" port="8181"/> ! <policy label_prefix="another_client" port="8282"/> ! </config> For an example of how to use the TCP terminal, please refer to the run script at 'gems/run/tcp_terminal.run'.