C pthread:分段错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C pthread:分段错误相关的知识,希望对你有一定的参考价值。
我正在尝试实现循环缓冲区以从加速度计获取数据并将信息导出到csv。加速度计的读数必须具有恒定的周期。我使用p_thread同时运行读取和导出函数,但它给了我一个分段错误错误。另外,我不确定是否使用p_thread我可以导出多个值。你能解决我的问题吗?
#include <stdio.h>
#include "MPU-9150.h"
#include <stdint.h>
#include <stdlib.h>
#include <sys/time.h>
#include <time.h>
#define nBuff 32
struct thread_data{
double ax_buff[nBuff];
double ay_buff[nBuff];
double gz_buff[nBuff];
int n_int;
int n_save;
};
void *reader( void *threadarg) {
int ret;
struct thread_data *my_data;
my_data = (struct thread_data *) threadarg;
time_t usecs = 0.005; // 0.005 seconds
while(1) {
time_t ustartTime = time(NULL);
while (time(NULL) - ustartTime == usecs) {
if (my_data->n_int + 1 != my_data->n_save) {
ret = imupi_read( my_data->ax_buff[my_data->n_int], my_data->ay_buff[my_data->n_int], my_data->gz_buff[my_data->n_int] );
if ( ret ) {
mpu_read_error(ret);
}
my_data->n_int = (my_data->n_int+1) % nBuff;
}
}
}
}
void main( void ) {
int ret;
// Set acquisition timer
struct thread_data data;
pthread_t my_thread;
// Initialization of the MPU-9150
if ( ret = imupi_init( ) ) {
mpu_init_error(ret);
}
//Open Data File
/*FILE *fid = fopen("mpu_cal.csv", "w");
if (fid == NULL) {
perror("Error opening file
");
exit(1);
}*/
if (pthread_create(&my_thread, NULL, reader, (void *) &data)) {
fprintf(stderr, "Error creating thread
");
exit(1);
}
// Set full timer
time_t secs = 30; // 30 seconds
time_t startTime = time(NULL);
while (time(NULL) - startTime < secs) {
if (data.n_save != data.n_int) {
printf( "%f,%f,%f
", data.ax_buff[data.n_save], data.ay_buff[data.n_save], data.gz_buff[data.n_save]);
//fflush(stdout);
data.n_save = (data.n_save+1) % nBuff;
}
}
//fclose(fid);
exit(1);
}
答案
你没有初始化data.n_int
和data.n_save
。最简单的解决方法是在声明中添加初始化器:
struct thread_data data = { .n_int = 0, .n_save = 0 };
此外,你将double
值传递给imupi_read()
时,它应该取代指针:
ret = imupi_read(&my_data->ax_buff[my_data->n_int],
&my_data->ay_buff[my_data->n_int], &my_data->gz_buff[my_data->n_int]);
您将面临的另一个问题是,在常见平台上,time_t
是一个整数类型,因此将0.005
分配给usecs
只会将其设置为零。
另一答案
这个网站帮助我使用多线程环形缓冲区:http://www.cs.fsu.edu/~baker/opsys/examples/prodcons/prodcons3.c
我改变了我的代码,它的工作原理
以上是关于C pthread:分段错误的主要内容,如果未能解决你的问题,请参考以下文章
使用 pthread_create 时出现“分段错误(核心转储)”