errno线程安全性

Posted hachikot

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了errno线程安全性相关的知识,希望对你有一定的参考价值。

errno

errno用于获取系统最后一次出错的错误代码。在C++中,errno其实是宏

// windows
#define errno (*_errno())

// linux
#define errno (*__errno_location ())

errno是线程安全的

在C++98中虽然没有规定这一点,但具体实现中基本都是线程安全的,POSIX.1c就规定errno是线程局部的,比如linux中对errno的定义为(注意这里#不是注释而是将预处理命令分开了):

# ifndef __ASSEMBLER__
/* Function to get address of global `errno' variable.  */
extern int *__errno_location (void) __THROW __attribute__ ((__const__));

#  if !defined _LIBC || defined _LIBC_REENTRANT
/* When using threads, errno is a per-thread value.  */
#   define errno (*__errno_location ())
#  endif
# endif /* !__ASSEMBLER__ */
#endif /* _ERRNO_H */

在C++11标准中规定了errno是线程局部的。

以上是关于errno线程安全性的主要内容,如果未能解决你的问题,请参考以下文章

C errno是否是线程安全的

有没有办法在多线程应用程序中安全地使用 errno? [复制]

CentOS yum 命令出现 [Errno 14] curl#6 - "Couldn't resolve host ..." 的解决方法(代码片段

read ECONNRESET at TLSWrap.onStreamRead (internal/stream_base_commons.js:209:20) { errno: -4077(代码片段

为啥基于锁的程序不能组成正确的线程安全片段?

markdown 线程安全相关片段