thrd_equal

来自cppreference.com
< c‎ | thread
在标头 <threads.h> 定义
int thrd_equal( thrd_t lhs, thrd_t rhs );
(C11 起)

检查 lhsrhs 是否表示同一线程。

参数

lhs, rhs - 要比较的线程

返回值

lhsrhs 表示同一线程则为非零值,否则为 0

引用

  • C17 标准(ISO/IEC 9899:2018):
  • 7.26.5.4 The thrd_equal function (第 280 页)
  • C11 标准(ISO/IEC 9899:2011):
  • 7.26.5.4 The thrd_equal function (第 384 页)

参阅