- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我试图掌握 POSIX 线程的使用,并创建了一个简单的程序,该程序只需将全局变量递增 10。有时它会一直运行良好,其他情况下会在随机点出现故障。虽然这种类型的问题似乎是线程的常见问题,但我无法理解为什么在这样一个简单的示例中会发生这种情况。我目前的想法是,由于未加入线程,父级可能在此之前结束,但如果我尝试加入,我会在第一个线程上出现段错误...... Join 语句被保留但被注释掉了。 Join 是否以正确的语法使用?没有执行连接会导致段错误吗?
#include <stdio.h>
#include <stdlib.h>
#include <pthread.h>
#include <errno.h>
#include <string.h>
#define NUMPHILO 5
thread_t threads[NUMPHILO]; //array of threads
pthread_mutex_t mutex; // initialize mutex
int x = 5; //for test
int y = 10;
int philofunct(){
pthread_mutex_lock (&mutex);
x = x+y;
pthread_mutex_unlock (&mutex);
printf("Philo fucntion x = %d\n",x);
return x;
}
int main(){
pthread_mutex_init(&mutex, NULL);
for(int i = 0; i < NUMPHILO; i++){
printf("creating thread[%i]\n",i);
if( pthread_create(&threads[i], NULL, (void *)philofunct(),(void *) &i) != 0)
fprintf(stderr, "%s", strerror(errno));
// pthread_join(threads[i],NULL);
// printf("Threads Joined\n");
}
pthread_mutex_destroy(&mutex);
printf("Threads created\n");
}
输出:
creating thread[0]
Philo fucntion x = 15
creating thread[1]
Philo fucntion x = 25
creating thread[2]
Philo fucntion x = 35
creating thread[3]
Philo fucntion x = 45
creating thread[4]
Philo fucntion x = 55
Threads created
下次运行:
creating thread[0]
Philo fucntion x = 15
creating thread[1]
Philo fucntion x = 25
creating thread[2]
Philo fucntion x = 35
Segmentation fault (core dumped)
一如既往,非常感谢任何帮助。
最佳答案
你遇到的主要问题是:
if( pthread_create(&threads[i], NULL, (void *)philofunct(),(void *) &i) != 0)
仔细看,您是在调用 philofunct()
而不是将函数指针传递给它。更糟糕的是,您正在传递 philofunct()
的返回值,它是一些整数,例如 15
,作为指向 pthread_create()
的函数指针.自然地,当线程尝试从诸如 15
的地址执行代码时,它会 segv。
一旦你像这样正确定义了 philofunct()
:
void *philofunct(void *arg)
然后您可以调用 pthread_create()
而无需强制转换:
if( pthread_create(&threads[i], NULL, philofunct,(void *) &i) != 0)
另外,如果你想加入你的线程,你应该在它们全部运行后加入你的线程。如果您在创建循环中加入线程,您将在创建下一个线程之前等待每个线程完成。所以你会这样写:
for (i=0;i<NUMPHILO; i++) {
pthread_create(&threads[i], ...);
// Other stuff...
}
for (i=0;i<NUMPHILO; i++)
pthread_join(threads[i], NULL);
关于c - 试图理解 POSIX 线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29177083/
我是 C++ 的新手,我在使用这段代码时遇到了问题: string output_date(int day, int month, int year){ string date; if
所以我这样做了 tar cvzf test.zip FP 为了创建目录 FP 的 zip 但是,它会列出 zip 中的目录 FP/ FP/php/ FP/php/pdf/ FP/php/docs/ F
我正在尝试在 Swift、Xcode 7.3(所以是 Swift 2.2)中创建一个通用类,但我似乎无法让它通过编译器: protocol Struct1Protocol { } struct Str
我的测试用例是这样的: class FooTest extends PHPUnit_Framework_TestCase { /** @covers MyClass::bar */ f
我正在尝试将brew install wine作为使electron-builder工作的一步。但是我所能得到的只是以下响应: ==> Installing dependencies for wine
我这样做: string[,] string1 = {{"one", "0"},{"Two", "5"},{"Three","1"}}; int b = 0; for(int i = 0; i <=
我正在尝试使用 SetWindowsHookEx 键盘 Hook Notepad.exe。 如您所见,工作线程正在将其 ASCII 代码(即 wParam)发送到指定的服务器。 UINT WINAPI
我正在尝试将 ListView 实现到我的 Fragment 中,但无论我尝试什么,我都会得到一个 NullPointerException。我检查对象是否为 null 并记录是否为 null,看起来
我尝试在一行中对齐两个 div。使用 float left 属性,一切顺利。但是当我在 div 中使用图像时,它开始产生问题。 所以这是我的示例代码:- Some headi
我目前正在使用此代码来获取图像的灰度图像表示并以 (512, 370, 1) 的格式表示它大批。 img_instance = cv2.imread(df.iloc[i][x_col]) / 255.
总结 我正在创建一个简单的应用程序,它允许用户选择一个包含顶级窗口的进程。用户首先键入 native DLL(而非托管 DLL)的路径。然后用户键入将在 Hook 过程中调用的方法的名称。该方法不得返
我是一名优秀的程序员,十分优秀!