_get_errno
取得 errno 全域變數的目前值。
errno_t _get_errno(
int * pValue
);
參數
- [out] pValue
out 要填入的整數的指標 errno 變數的目前值。
傳回值
如果成功則回傳零,如果失敗則為錯誤碼。 如果 pValue 為 NULL,則會叫用無效參數處理常式,如參數驗證 中所述。 如果允許繼續執行,函式將 errno 設置為 EINVAL 並回傳 EINVAL 。
備註
errno的可能值會定義在Errno.h中。 請參閱errno 常數。
範例
// 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 );
}
需求
常式 |
必要的標頭 |
選擇性標頭 |
---|---|---|
_get_errno |
<stdlib.h> |
<errno.h> |
如需更多關於相容性的資訊,請參閱入門介紹中的 相容性 (Compatibility) 。
NET Framework 對等
不適用。 若要呼叫標準 C 函式,請使用 PInvoke。 如需詳細資訊,請參閱平台叫用範例。