Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
746ece1a
Commit
746ece1a
authored
Oct 15, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 15, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Implement console input flush in server.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ea8fa317
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
+16
-2
console.c
server/console.c
+16
-2
No files found.
server/console.c
View file @
746ece1a
...
...
@@ -3,6 +3,7 @@
*
* Copyright (C) 1998 Alexandre Julliard
* 2001 Eric Pouech
* Copyright 2020 Jacek Caban for CodeWeavers
*
*
* This library is free software; you can redistribute it and/or
...
...
@@ -96,6 +97,7 @@ static const struct object_ops console_input_ops =
};
static
enum
server_fd_type
console_get_fd_type
(
struct
fd
*
fd
);
static
int
console_input_flush
(
struct
fd
*
fd
,
struct
async
*
async
);
static
int
console_input_ioctl
(
struct
fd
*
fd
,
ioctl_code_t
code
,
struct
async
*
async
);
static
const
struct
fd_ops
console_input_fd_ops
=
...
...
@@ -105,7 +107,7 @@ static const struct fd_ops console_input_fd_ops =
console_get_fd_type
,
/* get_fd_type */
no_fd_read
,
/* read */
no_fd_write
,
/* write */
no_fd_flush
,
/* flush */
console_input_flush
,
/* flush */
no_fd_get_file_info
,
/* get_file_info */
no_fd_get_volume_info
,
/* get_volume_info */
console_input_ioctl
,
/* ioctl */
...
...
@@ -409,7 +411,7 @@ static int queue_host_ioctl( struct console_server *server, unsigned int code, u
list_add_tail
(
&
server
->
queue
,
&
ioctl
->
entry
);
wake_up
(
&
server
->
obj
,
0
);
if
(
async
)
set_error
(
STATUS_PENDING
);
return
0
;
return
1
;
}
static
void
disconnect_console_server
(
struct
console_server
*
server
)
...
...
@@ -831,6 +833,18 @@ static int console_input_ioctl( struct fd *fd, ioctl_code_t code, struct async *
}
}
static
int
console_input_flush
(
struct
fd
*
fd
,
struct
async
*
async
)
{
struct
console_input
*
console
=
get_fd_user
(
fd
);
if
(
!
console
->
server
)
{
set_error
(
STATUS_INVALID_HANDLE
);
return
0
;
}
return
queue_host_ioctl
(
console
->
server
,
IOCTL_CONDRV_FLUSH
,
0
,
NULL
,
NULL
);
}
static
int
screen_buffer_ioctl
(
struct
fd
*
fd
,
ioctl_code_t
code
,
struct
async
*
async
)
{
struct
screen_buffer
*
screen_buffer
=
get_fd_user
(
fd
);
...
...
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