aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2020-02-28 12:40:49 +0100
committerCorinna Vinschen <corinna@vinschen.de>2020-02-28 12:41:05 +0100
commitf5357141ade956d8057e76b0a5e58f5069a6d399 (patch)
treed80c3a3429f4752baf22f753ed36362fe990f928
parent92b8b300c26c20ea441f69b36da9a838aa85c2d8 (diff)
downloadnewlib-f5357141ade956d8057e76b0a5e58f5069a6d399.zip
newlib-f5357141ade956d8057e76b0a5e58f5069a6d399.tar.gz
newlib-f5357141ade956d8057e76b0a5e58f5069a6d399.tar.bz2
Cygwin: AF_UNIX: use Nt functions within Nt functions
Functionaly equivalent, but makes for cleaner code Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
-rw-r--r--winsup/cygwin/fhandler_socket_unix.cc6
1 files 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;
}