Go to the source code of this file.
◆ _dup2()
Definition at line 117 of file dup2.cpp.
118{
119 __crt_cached_ptd_host
ptd;
121}
_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 _dup2_internal(int const source_fh, int const target_fh, __crt_cached_ptd_host &ptd)
◆ _dup2_internal()
Definition at line 61 of file dup2.cpp.
62{
68
69
71 {
72 return -1;
73 }
74
75
76
77
78 if (source_fh == target_fh)
79 {
80 return 0;
81 }
82
83
84
85 if (source_fh < target_fh)
86 {
89 }
90 else if (source_fh > target_fh)
91 {
94 }
95
97
99 {
101 }
103 {
104
107 }
110}
_Check_return_opt_ errno_t __cdecl __acrt_lowio_ensure_fh_exists(_In_ int _FileHandle)
void __cdecl __acrt_lowio_lock_fh(_In_ int _FileHandle)
void __cdecl __acrt_lowio_unlock_fh(_In_ int _FileHandle)
#define _UCRT_VALIDATE_CLEAR_OSSERR_RETURN(ptd, expr, errorcode, retexpr)
#define _UCRT_CHECK_FH_CLEAR_OSSERR_RETURN(ptd, handle, errorcode, retexpr)
static int __cdecl _dup2_nolock_internal(int const source_fh, int const target_fh, __crt_cached_ptd_host &ptd)
Referenced by _dup2().
◆ _dup2_nolock_internal()
Definition at line 11 of file dup2.cpp.
12{
14 {
15
16
17
18
20 ptd.get_doserrno().set(0);
21 _ASSERTE((
"Invalid file descriptor. File possibly closed by a different thread",0));
22 return -1;
23 }
24
25
27
32 &
reinterpret_cast<HANDLE&
>(new_osfhandle),
33 0,
36
38 {
40 return -1;
41 }
42
43
44
45
47 {
49 }
50
52
53
57
58 return 0;
59}
_Check_return_opt_ int __cdecl _close_nolock_internal(_In_ int _FileHandle, _Inout_ __crt_cached_ptd_host &_Ptd)
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 _dup2_internal().