ReactOS 0.4.16-dev-959-g2ec3a19
perror.cpp File Reference
#include <corecrt_internal.h>
#include <corecrt_internal_lowio.h>
#include <corecrt_internal_ptd_propagation.h>
#include <io.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
Include dependency graph for perror.cpp:

Go to the source code of this file.

Functions

static void __cdecl _perror_internal (char const *const user_prefix, __crt_cached_ptd_host &ptd)
 
void __cdecl perror (char const *const user_prefix)
 

Function Documentation

◆ _perror_internal()

static void __cdecl _perror_internal ( char const *const  user_prefix,
__crt_cached_ptd_host &  ptd 
)
static

Definition at line 41 of file perror.cpp.

42{
43 int const fh = 2;
44
46 __try
47 {
48 if (user_prefix != nullptr && user_prefix[0] != '\0')
49 {
50 _write_nolock(fh, user_prefix, static_cast<unsigned>(strlen(user_prefix)), ptd);
51 _write_nolock(fh, ": ", 2, ptd);
52 }
53
54 // Use PTD directly to access previously set errno value.
55 char const* const system_message = _get_sys_err_msg(ptd.get_raw_ptd()->_terrno);
56
57 _write_nolock(fh, system_message, static_cast<unsigned>(strlen(system_message)), ptd);
58 _write_nolock(fh, "\n", 1, ptd);
59
60 }
62 {
64 }
66}
ACPI_SIZE strlen(const char *String)
Definition: utclib.c:269
_Ret_z_ __inline char const * _get_sys_err_msg(size_t const m)
_Check_return_ int __cdecl _write_nolock(_In_ int _FileHandle, _In_reads_bytes_(_MaxCharCount) const void *_Buf, _In_ unsigned int _MaxCharCount, __crt_cached_ptd_host &_Ptd)
void __cdecl __acrt_lowio_lock_fh(_In_ int _FileHandle)
void __cdecl __acrt_lowio_unlock_fh(_In_ int _FileHandle)
_In_ size_t const _In_ int _In_ bool const _In_ unsigned const _In_ __acrt_rounding_mode const _Inout_ __crt_cached_ptd_host & ptd
Definition: cvt.cpp:355
#define __try
Definition: pseh2_64.h:188
#define __endtry
Definition: pseh2_64.h:191
#define __finally
Definition: pseh2_64.h:190

Referenced by perror().

◆ perror()

void __cdecl perror ( char const *const  user_prefix)

Definition at line 68 of file perror.cpp.

69{
70 __crt_cached_ptd_host ptd;
71 return _perror_internal(user_prefix, ptd);
72}
static void __cdecl _perror_internal(char const *const user_prefix, __crt_cached_ptd_host &ptd)
Definition: perror.cpp:41