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
b299d4d4
Commit
b299d4d4
authored
Aug 28, 2013
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Aug 28, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Add a trace for transmitter's buffer empty flag.
parent
2123d94e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
serial.c
dlls/ntdll/serial.c
+2
-2
No files found.
dlls/ntdll/serial.c
View file @
b299d4d4
...
...
@@ -781,8 +781,7 @@ static NTSTATUS set_XOn(int fd)
*/
typedef
struct
serial_irq_info
{
int
rx
,
tx
,
frame
,
overrun
,
parity
,
brk
,
buf_overrun
;
DWORD
temt
;
int
rx
,
tx
,
frame
,
overrun
,
parity
,
brk
,
buf_overrun
,
temt
;
}
serial_irq_info
;
/***********************************************************************
...
...
@@ -869,6 +868,7 @@ static DWORD check_events(int fd, DWORD mask,
TRACE
(
"old->parity 0x%08x vs. new->parity 0x%08x
\n
"
,
old
->
parity
,
new
->
parity
);
TRACE
(
"old->brk 0x%08x vs. new->brk 0x%08x
\n
"
,
old
->
brk
,
new
->
brk
);
TRACE
(
"old->buf_overrun 0x%08x vs. new->buf_overrun 0x%08x
\n
"
,
old
->
buf_overrun
,
new
->
buf_overrun
);
TRACE
(
"old->temt 0x%08x vs. new->temt 0x%08x
\n
"
,
old
->
temt
,
new
->
temt
);
if
(
old
->
brk
!=
new
->
brk
)
ret
|=
EV_BREAK
;
if
((
old_mstat
&
MS_CTS_ON
)
!=
(
new_mstat
&
MS_CTS_ON
))
ret
|=
EV_CTS
;
...
...
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