0

我有一个名为 pos 的类...我正在尝试从这个类中轮询一个方法。我使用了 pthread_create(pthread_t thread, pos::Pirnt_data,this);

我收到一个错误,即 pos 未在范围内声明...我包含了 pos 的 h 文件,但我不明白。我想我使用了错误的格式有人可以帮助我吗

#include "position.h"
#include "pthread.h"
#include "pos.h"
void position::tick(schedflags_t flags) 
{   
    if(pthread_create(&thread,NULL,pos::Print_data,this)!=0) {
        stringstream bad;
        bad << "OPIMex: Could not create listener thread: "
    }

此类位置具有每 1 秒运行一次数据的方法滴答。我正在尝试从类 pos 轮询方法 Print data 但它给了我这个错误任何想法为什么?

这是类 pos.h

#ifndef POS_H_
#define POS_H_



#include <math.h>
#include <iostream>
#include <fstream>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <termios.h>
#include <gps.h>
#include <string.h>
#include <pthread.h>
#include <string>
#include <vector>

#include <strings.h>
#include <math.h>


using namespace std;
namespace herpderp {
namespace modules {



int UBX_step =0;
long data;
int UBX_class;
int UBX_id=0;
int UBX_payload_length_hi;
int UBX_payload_length_lo;
int UBX_payload_counter =0;
int ck_a;
int ck_b;
int GPS_timer;
int fd;
unsigned int UBX_buffer[35];
int payload_data;
long lat=0;
long lon=0;
long alt_MSL=0;
long iTOW=0;
long alt=0; 
unsigned long LastMS;
int UBX_Read;
vector <float> v;
fstream myfile;

int Open_port(void);
int read_tofile();
long join_4_bytes( unsigned int Buffer[]);
void parse_ubx_gps(void);
void checksum(char ubx_data);
void Print_data();
int push_data_into_vector();
int decode_gps();
int Configure_gps();
int test();
int Close_NEMA();
int Open_UBX();

  }

} #endif //POS_H_

4

3 回答 3

2

pthread_kill不上pthread.。它开着signal.h

#include <signal.h>
于 2017-11-03T06:41:52.780 回答
0

形成 pos.h 似乎没有名为 pos 的类,你只需要调用函数名:

 if(pthread_create(&thread,NULL,Print_data,this)!=0) {
于 2013-06-13T13:39:09.220 回答
0

1)您可以提供一些代码片段/附加信息以更好地帮助您。

2) 如果您收到链接错误,请检查您是否与 -lpthread 库链接。

于 2013-06-13T13:35:48.570 回答