4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-02-18 23:12:15 +08:00

Cygwin: AF_UNIX: implement constructor

This commit is contained in:
Ken Brown 2021-05-07 15:05:34 -04:00
parent 315920326a
commit 973af68fff

View File

@ -1197,8 +1197,12 @@ fhandler_socket_unix::set_close_on_exec (bool val)
set_no_inheritance (shmem_handle, val);
}
fhandler_socket_unix::fhandler_socket_unix ()
fhandler_socket_unix::fhandler_socket_unix () :
fhandler_socket (),
shmem_handle (NULL), shmem (NULL), backing_file_handle (NULL),
connect_wait_thr (NULL), cwt_termination_evt (NULL), cwt_param (NULL)
{
need_fork_fixup (true);
}
fhandler_socket_unix::~fhandler_socket_unix ()