Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
60d6518c
Commit
60d6518c
authored
Jan 04, 2007
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make_requests: Grab status names from async_terminate calls too.
parent
5c8421d3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
trace.c
server/trace.c
+3
-0
make_requests
tools/make_requests
+5
-1
No files found.
server/trace.c
View file @
60d6518c
...
...
@@ -3945,10 +3945,12 @@ static const struct
{
{
"ACCESS_DENIED"
,
STATUS_ACCESS_DENIED
},
{
"ACCESS_VIOLATION"
,
STATUS_ACCESS_VIOLATION
},
{
"ALERTED"
,
STATUS_ALERTED
},
{
"ALIAS_EXISTS"
,
STATUS_ALIAS_EXISTS
},
{
"BAD_DEVICE_TYPE"
,
STATUS_BAD_DEVICE_TYPE
},
{
"BUFFER_OVERFLOW"
,
STATUS_BUFFER_OVERFLOW
},
{
"BUFFER_TOO_SMALL"
,
STATUS_BUFFER_TOO_SMALL
},
{
"CANCELLED"
,
STATUS_CANCELLED
},
{
"CHILD_MUST_BE_VOLATILE"
,
STATUS_CHILD_MUST_BE_VOLATILE
},
{
"DEVICE_BUSY"
,
STATUS_DEVICE_BUSY
},
{
"DIRECTORY_NOT_EMPTY"
,
STATUS_DIRECTORY_NOT_EMPTY
},
...
...
@@ -3963,6 +3965,7 @@ static const struct
{
"ERROR_SEEK"
,
0xc0010000
|
ERROR_SEEK
},
{
"FILE_IS_A_DIRECTORY"
,
STATUS_FILE_IS_A_DIRECTORY
},
{
"FILE_LOCK_CONFLICT"
,
STATUS_FILE_LOCK_CONFLICT
},
{
"HANDLES_CLOSED"
,
STATUS_HANDLES_CLOSED
},
{
"HANDLE_NOT_CLOSABLE"
,
STATUS_HANDLE_NOT_CLOSABLE
},
{
"INSTANCE_NOT_AVAILABLE"
,
STATUS_INSTANCE_NOT_AVAILABLE
},
{
"INVALID_CID"
,
STATUS_INVALID_CID
},
...
...
tools/make_requests
View file @
60d6518c
...
...
@@ -241,7 +241,11 @@ sub GET_ERROR_NAMES()
{
if
(
/set_error\s*\(\s*STATUS_(\w+)\s*\)/
)
{
$errors
{
$1
}
=
"STATUS_$1"
;
$errors
{
$1
}
=
"STATUS_$1"
unless
$1
eq
"SUCCESS"
;
}
elsif
(
/async_terminate_\w+\s*\(.*,\s*STATUS_(\w+)\s*\)/
)
{
$errors
{
$1
}
=
"STATUS_$1"
unless
$1
eq
"SUCCESS"
;
}
elsif
(
/set_win32_error\s*\(\s*(\w+)\s*\)/
)
{
...
...
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