diff options
author | midipix <writeonce@midipix.org> | 2016-07-20 05:21:57 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-07-20 05:27:39 -0400 |
commit | c34b2cb9027b8d9dfb127241a9634b7b47a84186 (patch) | |
tree | 11fd207680db82dde5712194aac2f53709446b4b /include | |
parent | 862d11239a7b649b53f099f107b67a656b3cd9e7 (diff) | |
download | ntapi-c34b2cb9027b8d9dfb127241a9634b7b47a84186.tar.bz2 ntapi-c34b2cb9027b8d9dfb127241a9634b7b47a84186.tar.xz |
tty session information: support free-standing session spawning.
With matching support in the tty/pty server, passing the syspid of
a child process should allow for child session initialization from
within a multi-threaded parent as part of a fork-less, native process
creation.
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_tty.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ntapi/nt_tty.h b/include/ntapi/nt_tty.h index d8e2fc6..16fd43b 100644 --- a/include/ntapi/nt_tty.h +++ b/include/ntapi/nt_tty.h @@ -218,7 +218,7 @@ typedef struct __attr_ptr_size_aligned__ _nt_tty_session_info { int32_t pid; int32_t pgid; int32_t sid; - int32_t reserved; + int32_t syspid; } nt_tty_session_info; typedef struct __attr_ptr_size_aligned__ _nt_tty_register_msg { |