_get_errno
Visual Studio 2012
Gets the current value of the errno global variable.
errno_t _get_errno( int * pValue );
Returns zero if successful; an error code on failure. If pValue is NULL, the invalid parameter handler is invoked as described in Parameter Validation. If execution is allowed to continue, this function sets errno to EINVAL and returns EINVAL.
Possible values of errno are defined in Errno.h. Also, see errno Constants.
// crt_get_errno.c
#include <stdio.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <share.h>
#include <errno.h>
int main()
{
errno_t err;
int pfh;
_sopen_s( &pfh, "nonexistent.file", _O_WRONLY, _SH_DENYNO, _S_IWRITE );
_get_errno( &err );
printf( "errno = %d\n", err );
printf( "fyi, ENOENT = %d\n", ENOENT );
}
errno = 2 fyi, ENOENT = 2
|
Routine |
Required header |
Optional header |
|---|---|---|
|
_get_errno |
<stdlib.h> |
<errno.h> |
For more compatibility information, see Compatibility in the Introduction.
Not applicable. To call the standard C function, use PInvoke. For more information, see Platform Invoke Examples.