Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Unified Diff: third_party/crashpad/crashpad/util/win/nt_internals.h

Issue 1921833002: Update Crashpad to 00d458adaf3868999eeab5341fce5bedb81d17a1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: win fixes Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/crashpad/crashpad/util/util.gyp ('k') | third_party/crashpad/crashpad/util/win/nt_internals.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/crashpad/crashpad/util/win/nt_internals.h
diff --git a/third_party/crashpad/crashpad/util/win/nt_internals.h b/third_party/crashpad/crashpad/util/win/nt_internals.h
index b6221018890d3c1da79ca960c8882d8ab364ff5d..3ced5cc338560137d73571f93a543b7927c4a437 100644
--- a/third_party/crashpad/crashpad/util/win/nt_internals.h
+++ b/third_party/crashpad/crashpad/util/win/nt_internals.h
@@ -19,6 +19,23 @@
namespace crashpad {
+NTSTATUS NtClose(HANDLE handle);
+
+// http://processhacker.sourceforge.net/doc/ntpsapi_8h_source.html
+#define THREAD_CREATE_FLAGS_SKIP_THREAD_ATTACH 0x00000002
+NTSTATUS
+NtCreateThreadEx(PHANDLE thread_handle,
+ ACCESS_MASK desired_access,
+ POBJECT_ATTRIBUTES object_attributes,
+ HANDLE process_handle,
+ PVOID start_routine,
+ PVOID argument,
+ ULONG create_flags,
+ SIZE_T zero_bits,
+ SIZE_T stack_size,
+ SIZE_T maximum_stack_size,
+ PVOID /*PPS_ATTRIBUTE_LIST*/ attribute_list);
+
// Copied from ntstatus.h because um/winnt.h conflicts with general inclusion of
// ntstatus.h.
#define STATUS_BUFFER_TOO_SMALL ((NTSTATUS)0xC0000023L)
« no previous file with comments | « third_party/crashpad/crashpad/util/util.gyp ('k') | third_party/crashpad/crashpad/util/win/nt_internals.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698