Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
P
pykd-ext
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Package Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Todd Hartman
pykd-ext
Commits
593d4037
Commit
593d4037
authored
Aug 04, 2019
by
ussrhero
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed output mask
parent
efa1c300
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
sources/version.h
sources/version.h
+1
-1
sources/windbgext.cpp
sources/windbgext.cpp
+5
-2
No files found.
sources/version.h
View file @
593d4037
...
...
@@ -3,7 +3,7 @@
#define PYKDEXT_VERSION_MAJOR 2
#define PYKDEXT_VERSION_MINOR 0
#define PYKDEXT_VERSION_SUBVERSION 0
#define PYKDEXT_VERSION_BUILDNO 2
1
#define PYKDEXT_VERSION_BUILDNO 2
2
#define __VER_STR2__(x) #x
#define __VER_STR1__(x) __VER_STR2__(x)
...
...
sources/windbgext.cpp
View file @
593d4037
...
...
@@ -306,6 +306,10 @@ static const std::regex shebangRe("^#!\\s*python([2,3])(?:\\.(\\d))?$");
static
volatile
long
recursiveGuard
=
0L
;
#ifndef DEBUG_OUTPUT_STATUS
#define DEBUG_OUTPUT_STATUS 0x00000400
#endif
extern
"C"
HRESULT
CALLBACK
...
...
@@ -314,9 +318,9 @@ py(
PCSTR
args
)
{
ULONG
oldMask
;
client
->
GetOutputMask
(
&
oldMask
);
client
->
SetOutputMask
(
(
oldMask
&
~
DEBUG_OUTPUT_PROMPT
)
|
DEBUG_OUTPUT_STATUS
);
try
{
...
...
@@ -394,7 +398,6 @@ py(
{
std
::
wstring
scriptFileNameW
=
_bstr_t
(
scriptFileName
.
c_str
());
//
std
::
vector
<
std
::
wstring
>
argws
(
opts
.
args
.
size
());
if
(
!
scriptFileNameW
.
empty
()
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment