
This tag brings in some bug fixes related to waiting for containers to terminate and trying to kill an already terminated process, as well as tty support (exec -it) for Windows Host Process Containers. Signed-off-by: Daniel Canter <dcanter@microsoft.com>
9 lines
163 B
Go
9 lines
163 B
Go
package winapi
|
|
|
|
const PROCESS_ALL_ACCESS uint32 = 2097151
|
|
|
|
const (
|
|
PROC_THREAD_ATTRIBUTE_PSEUDOCONSOLE = 0x20016
|
|
PROC_THREAD_ATTRIBUTE_JOB_LIST = 0x2000D
|
|
)
|