[newlib-cygwin] Cygwin: AF_UNIX: use Nt functions within Nt functions
Corinna Vinschen
corinna@sourceware.org
Fri Feb 28 11:43:00 GMT 2020
https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=f5357141ade956d8057e76b0a5e58f5069a6d399
commit f5357141ade956d8057e76b0a5e58f5069a6d399
Author: Corinna Vinschen <corinna@vinschen.de>
Date: Fri Feb 28 12:40:49 2020 +0100
Cygwin: AF_UNIX: use Nt functions within Nt functions
Functionaly equivalent, but makes for cleaner code
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diff:
---
winsup/cygwin/fhandler_socket_unix.cc | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/winsup/cygwin/fhandler_socket_unix.cc b/winsup/cygwin/fhandler_socket_unix.cc
index 824bcba..760f210 100644
--- a/winsup/cygwin/fhandler_socket_unix.cc
+++ b/winsup/cygwin/fhandler_socket_unix.cc
@@ -1436,10 +1436,10 @@ fhandler_socket_unix::socketpair (int af, int type, int protocol, int flags,
fh_open_pipe_failed:
NtClose (pipe);
create_pipe_failed:
- NtUnmapViewOfSection (GetCurrentProcess (), fh->shmem);
+ NtUnmapViewOfSection (NtCurrentProcess (), fh->shmem);
NtClose (fh->shmem_handle);
fh_shmem_failed:
- NtUnmapViewOfSection (GetCurrentProcess (), shmem);
+ NtUnmapViewOfSection (NtCurrentProcess (), shmem);
NtClose (shmem_handle);
return -1;
}
@@ -1814,7 +1814,7 @@ fhandler_socket_unix::close ()
NtClose (shm);
param = InterlockedExchangePointer ((PVOID *) &shmem, NULL);
if (param)
- NtUnmapViewOfSection (GetCurrentProcess (), param);
+ NtUnmapViewOfSection (NtCurrentProcess (), param);
return 0;
}
More information about the Cygwin-cvs
mailing list