Go to the source code of this file.
◆ _dup()
Definition at line 92 of file dup.cpp.
93{
94 __crt_cached_ptd_host
ptd;
96}
_In_ size_t const _In_ int _In_ bool const _In_ unsigned const _In_ __acrt_rounding_mode const _Inout_ __crt_cached_ptd_host & ptd
static int __cdecl _dup_internal(int const fh, __crt_cached_ptd_host &ptd)
◆ _dup_internal()
Definition at line 79 of file dup.cpp.
80{
84
87 });
88}
auto __acrt_lowio_lock_fh_and_call(int const fh, Action &&action) -> decltype(action())
#define _UCRT_VALIDATE_CLEAR_OSSERR_RETURN(ptd, expr, errorcode, retexpr)
#define _UCRT_CHECK_FH_CLEAR_OSSERR_RETURN(ptd, handle, errorcode, retexpr)
static int __cdecl _dup_nolock_internal(int const fh, __crt_cached_ptd_host &ptd)
Referenced by _dup().
◆ _dup_nolock_internal()
static int __cdecl _dup_nolock_internal |
( |
int const |
fh, |
|
|
__crt_cached_ptd_host & |
ptd |
|
) |
| |
throw | ( | |
| ) | | |
|
static |
Definition at line 39 of file dup.cpp.
40{
42 {
44 ptd.get_doserrno().set(0);
45 _ASSERTE((
"Invalid file descriptor. File possibly closed by a different thread", 0));
46 return -1;
47 }
48
49
51 if (new_fh == -1)
52 {
54 ptd.get_doserrno().set(0);
55 return -1;
56 }
57
58 int return_value = -1;
60 {
62 }
64 {
65
66
67
68 if (return_value == -1)
69 {
71 }
72
74 }
76 return return_value;
77}
int __cdecl _alloc_osfhnd(void)
void __cdecl __acrt_lowio_unlock_fh(_In_ int _FileHandle)
static int __cdecl duplicate_osfhnd(int const fh, int const new_fh, __crt_cached_ptd_host &ptd)
Referenced by _dup_internal().
◆ duplicate_osfhnd()
Definition at line 11 of file dup.cpp.
12{
13
15
20 &
reinterpret_cast<HANDLE&
>(new_osfhandle),
24
26 {
28 return -1;
29 }
30
31
36 return new_fh;
37}
int __cdecl __acrt_lowio_set_os_handle(int, intptr_t)
#define GetCurrentProcess()
BOOL WINAPI DuplicateHandle(IN HANDLE hSourceProcessHandle, IN HANDLE hSourceHandle, IN HANDLE hTargetProcessHandle, OUT LPHANDLE lpTargetHandle, IN DWORD dwDesiredAccess, IN BOOL bInheritHandle, IN DWORD dwOptions)
void __cdecl __acrt_errno_map_os_error_ptd(unsigned long const oserrno, __crt_cached_ptd_host &ptd)
_CRTIMP intptr_t __cdecl _get_osfhandle(_In_ int _FileHandle)
DWORD WINAPI GetLastError(void)
#define DUPLICATE_SAME_ACCESS
Referenced by _dup_nolock_internal().