作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在尝试将一些代码移植到 64 位,但似乎 _beginthreadex
中的线程
address
标识符是 unsigned int
这是 32 位的,我无法从函数传递/接收 64 位的
address
标识符:
uintptr_t _beginthreadex( // NATIVE CODE
void *security,
unsigned stack_size,
unsigned ( __stdcall *start_address )( void * ),
void *arglist,
unsigned initflag,
unsigned *thrdaddr // <-- 32-bit address
);
我检查了 MSDN documentation ,但我没有看到该函数的 64 位版本。我是否包含了错误的 header 、每个处理器标志,或者是否有其他方法可以创建具有 64 位
address
标识符的线程?
文档指出 thrdaddr
参数是 32 位的:
Thrdaddr
Points to a 32-bit variable that receives the thread identifier. Might be NULL, in which case it is not used.
最佳答案
thrdaddr
参数接收线程 ID。它不是线程函数的地址。它似乎是一个非常糟糕的命名参数。
start_address
参数是线程函数指针,您可以在该参数中传递 64 位函数指针。
您对问题的更新表明您认为线程 ID 在 64 位 Windows 上是一个 64 位值。那是一种错误的想法。线程 ID 在所有 Windows 版本上都是 32 位值。
关于c++ - 如何为 _beginthreadex 提供 64 位线程标识符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9198218/
我是一名优秀的程序员,十分优秀!