mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2024-11-21 17:09:06 -07:00
Merge branch 'handler_fd_ops' into 'master'
Fix initialization of the handler_fd_ops See merge request wine/wine!5503
This commit is contained in:
commit
05578c473c
6 changed files with 38 additions and 10 deletions
|
@ -644,9 +644,14 @@ static const struct fd_ops inotify_fd_ops =
|
||||||
{
|
{
|
||||||
inotify_get_poll_events, /* get_poll_events */
|
inotify_get_poll_events, /* get_poll_events */
|
||||||
inotify_poll_event, /* poll_event */
|
inotify_poll_event, /* poll_event */
|
||||||
NULL, /* flush */
|
|
||||||
NULL, /* get_fd_type */
|
NULL, /* get_fd_type */
|
||||||
|
NULL, /* read */
|
||||||
|
NULL, /* write */
|
||||||
|
NULL, /* flush */
|
||||||
|
NULL, /* get_file_info */
|
||||||
|
NULL, /* get_volume_info */
|
||||||
NULL, /* ioctl */
|
NULL, /* ioctl */
|
||||||
|
NULL, /* cancel_async */
|
||||||
NULL, /* queue_async */
|
NULL, /* queue_async */
|
||||||
NULL /* reselect_async */
|
NULL /* reselect_async */
|
||||||
};
|
};
|
||||||
|
|
|
@ -125,12 +125,16 @@ static const struct fd_ops process_fd_ops =
|
||||||
{
|
{
|
||||||
NULL, /* get_poll_events */
|
NULL, /* get_poll_events */
|
||||||
process_poll_event, /* poll_event */
|
process_poll_event, /* poll_event */
|
||||||
NULL, /* flush */
|
|
||||||
NULL, /* get_fd_type */
|
NULL, /* get_fd_type */
|
||||||
|
NULL, /* read */
|
||||||
|
NULL, /* write */
|
||||||
|
NULL, /* flush */
|
||||||
|
NULL, /* get_file_info */
|
||||||
|
NULL, /* get_volume_info */
|
||||||
NULL, /* ioctl */
|
NULL, /* ioctl */
|
||||||
|
NULL, /* cancel_async */
|
||||||
NULL, /* queue_async */
|
NULL, /* queue_async */
|
||||||
NULL, /* reselect_async */
|
NULL /* reselect_async */
|
||||||
NULL /* cancel async */
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* process startup info */
|
/* process startup info */
|
||||||
|
|
|
@ -184,12 +184,16 @@ static const struct fd_ops msg_queue_fd_ops =
|
||||||
{
|
{
|
||||||
NULL, /* get_poll_events */
|
NULL, /* get_poll_events */
|
||||||
msg_queue_poll_event, /* poll_event */
|
msg_queue_poll_event, /* poll_event */
|
||||||
NULL, /* flush */
|
|
||||||
NULL, /* get_fd_type */
|
NULL, /* get_fd_type */
|
||||||
|
NULL, /* read */
|
||||||
|
NULL, /* write */
|
||||||
|
NULL, /* flush */
|
||||||
|
NULL, /* get_file_info */
|
||||||
|
NULL, /* get_volume_info */
|
||||||
NULL, /* ioctl */
|
NULL, /* ioctl */
|
||||||
|
NULL, /* cancel_async */
|
||||||
NULL, /* queue_async */
|
NULL, /* queue_async */
|
||||||
NULL, /* reselect_async */
|
NULL /* reselect_async */
|
||||||
NULL /* cancel async */
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -109,9 +109,14 @@ static const struct fd_ops master_socket_fd_ops =
|
||||||
{
|
{
|
||||||
NULL, /* get_poll_events */
|
NULL, /* get_poll_events */
|
||||||
master_socket_poll_event, /* poll_event */
|
master_socket_poll_event, /* poll_event */
|
||||||
NULL, /* flush */
|
|
||||||
NULL, /* get_fd_type */
|
NULL, /* get_fd_type */
|
||||||
|
NULL, /* read */
|
||||||
|
NULL, /* write */
|
||||||
|
NULL, /* flush */
|
||||||
|
NULL, /* get_file_info */
|
||||||
|
NULL, /* get_volume_info */
|
||||||
NULL, /* ioctl */
|
NULL, /* ioctl */
|
||||||
|
NULL, /* cancel_async */
|
||||||
NULL, /* queue_async */
|
NULL, /* queue_async */
|
||||||
NULL /* reselect_async */
|
NULL /* reselect_async */
|
||||||
};
|
};
|
||||||
|
|
|
@ -84,9 +84,14 @@ static const struct fd_ops handler_fd_ops =
|
||||||
{
|
{
|
||||||
NULL, /* get_poll_events */
|
NULL, /* get_poll_events */
|
||||||
handler_poll_event, /* poll_event */
|
handler_poll_event, /* poll_event */
|
||||||
NULL, /* flush */
|
|
||||||
NULL, /* get_fd_type */
|
NULL, /* get_fd_type */
|
||||||
|
NULL, /* read */
|
||||||
|
NULL, /* write */
|
||||||
|
NULL, /* flush */
|
||||||
|
NULL, /* get_file_info */
|
||||||
|
NULL, /* get_volume_info */
|
||||||
NULL, /* ioctl */
|
NULL, /* ioctl */
|
||||||
|
NULL, /* cancel_async */
|
||||||
NULL, /* queue_async */
|
NULL, /* queue_async */
|
||||||
NULL /* reselect_async */
|
NULL /* reselect_async */
|
||||||
};
|
};
|
||||||
|
|
|
@ -207,9 +207,14 @@ static const struct fd_ops thread_fd_ops =
|
||||||
{
|
{
|
||||||
NULL, /* get_poll_events */
|
NULL, /* get_poll_events */
|
||||||
thread_poll_event, /* poll_event */
|
thread_poll_event, /* poll_event */
|
||||||
NULL, /* flush */
|
|
||||||
NULL, /* get_fd_type */
|
NULL, /* get_fd_type */
|
||||||
|
NULL, /* read */
|
||||||
|
NULL, /* write */
|
||||||
|
NULL, /* flush */
|
||||||
|
NULL, /* get_file_info */
|
||||||
|
NULL, /* get_volume_info */
|
||||||
NULL, /* ioctl */
|
NULL, /* ioctl */
|
||||||
|
NULL, /* cancel_async */
|
||||||
NULL, /* queue_async */
|
NULL, /* queue_async */
|
||||||
NULL /* reselect_async */
|
NULL /* reselect_async */
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue