diff options
author | midipix <writeonce@midipix.org> | 2016-08-10 04:52:24 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-08-10 21:44:19 -0400 |
commit | c73c12e6ed608f6cde2b890cac24cd3e093c66ba (patch) | |
tree | 9b77b62150953566f9511093ea59e00d2687428e /include | |
parent | 7ddcea31a85ae820912566380d8b80c9aad6b93b (diff) | |
download | ntapi-c73c12e6ed608f6cde2b890cac24cd3e093c66ba.tar.bz2 ntapi-c73c12e6ed608f6cde2b890cac24cd3e093c66ba.tar.xz |
runtime data: added signal action support.
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_process.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/ntapi/nt_process.h b/include/ntapi/nt_process.h index 2aef7ee..a1ef3a2 100644 --- a/include/ntapi/nt_process.h +++ b/include/ntapi/nt_process.h @@ -499,6 +499,11 @@ typedef struct _nt_runtime_data { wchar16_t ** peb_wargv; wchar16_t ** peb_wenvp; uintptr_t ptyany[4]; + uint32_t sa_queue [2]; + uint32_t sa_block [2]; + void * sa_handler[64]; + uintptr_t sa_flags [64]; + uint32_t sa_mask [64][2]; void * uptr [NT_RUNTIME_DATA_USER_PTRS]; void * uclose[NT_RUNTIME_DATA_USER_PTRS]; int32_t udat32[NT_RUNTIME_DATA_USER_INT32_SLOTS]; |