Fix initialization of the process_fd_ops

This lists all fields of the `struct fd_ops' when object of that type --
process_fd_ops in server/process.c -- is being initialized.

For motivation behind this patch please read message of commit
0bd610a1680 (Fix initialization of the handler_fd_ops, 2024-04-16).

No functional changes intended.

Signed-off-by: Ruslan Garipov <ruslanngaripov@gmail.com>
This commit is contained in:
Ruslan Garipov 2024-04-17 15:16:52 +05:00
parent a27bcafff6
commit ad050518e9
No known key found for this signature in database
GPG key ID: F703ED24EB29F026

View file

@ -125,12 +125,16 @@ static const struct fd_ops process_fd_ops =
{
NULL, /* get_poll_events */
process_poll_event, /* poll_event */
NULL, /* flush */
NULL, /* get_fd_type */
NULL, /* read */
NULL, /* write */
NULL, /* flush */
NULL, /* get_file_info */
NULL, /* get_volume_info */
NULL, /* ioctl */
NULL, /* cancel_async */
NULL, /* queue_async */
NULL, /* reselect_async */
NULL /* cancel async */
NULL /* reselect_async */
};
/* process startup info */