问题标签 [tinycthread]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c++ - 如何使用tinycthread做C++并发编程
我刚开始使用 tinycthread.h 进行并发编程。但是,我不知道如何使用它。目前,我想知道如何用这个库创建一个线程函数。
这是 tinycthread 库中列出的两个函数
我想创建一个以整数为参数的线程函数。
我在我的程序中写了这样的东西。
但是由于typedef int(* thrd_start_t)(void *arg)
typedef 的接受方式是这样的,它不允许我将任何整数作为我的参数。那么我应该怎么做才能创建一个以整数为参数的线程函数。
c++ - tinycthread 编译错误
我现在正在使用 tinycthread 进行一些线程编程。我的编译器是 Visual Studio 2010。我收到这样的错误“未解析的外部符号 thrd_create”似乎我需要一些库来解决问题。我不知道我该怎么做。