Timespec重新定义错误

时间:2015-11-06 00:39:19

标签: c windows visual-studio pthreads timespec

使用Visual Studio 2015在C中执行Pthread程序时,出现以下错误:

Error C2011 'timespec': 'struct' type redefinition

以下是我的代码:

#include<pthread.h>
#include<stdlib.h>
#include<stdio.h>


void *calculator(void *parameter);

int main(/*int *argc,char *argv[]*/)
{
    pthread_t thread_obj;
    pthread_attr_t thread_attr;
    char *First_string = "abc"/*argv[1]*/;
    pthread_attr_init(&thread_attr);
        pthread_create(&thread_obj,&thread_attr,calculator,First_string);

}
void *calculator(void *parameter)
{
    int x=atoi((char*)parameter);
    printf("x=%d", x);
}

pthread.h头文件包含以下与timespec相关的代码:

#if !defined(HAVE_STRUCT_TIMESPEC)
#define HAVE_STRUCT_TIMESPEC
#if !defined(_TIMESPEC_DEFINED)
#define _TIMESPEC_DEFINED
struct timespec {
        time_t tv_sec;
        long tv_nsec;
};
#endif /* _TIMESPEC_DEFINED */
#endif /* HAVE_STRUCT_TIMESPEC */

我使用的其他头文件都没有使用timespec结构,因此没有机会重新定义。没有可能损坏的头文件,因为它已从pthread opensource网站下载。

1 个答案:

答案 0 :(得分:38)

pthreads-win32(我假设您正在使用)可能内部包含time.htime.h通常也包含在其他库/标题中) - 和time.h已经声明timespec(同样,它以与pthreads兼容的方式执行) - 但是pthreads-win32&#39; pthread.h没有有效的包含警卫对于这种情况(对他们感到羞耻!)。 pthreads尝试声明它,因为它在内部需要它,但由于它可能不会需要整个time.h,它会尽可能地仅声明timespec。不过,您只需添加

即可
#define HAVE_STRUCT_TIMESPEC

#include <pthread.h>之前 - 这将告诉pthreads-win32标头你已经有一个正确的timespec,并且会让你的代码正确编译。

或者,如果您广泛使用pthread,您可能希望编辑头文件本身 - 只需在开头附近的某处添加#define HAVE_STRUCT_TIMESPEC,您就可以了。

进一步阅读:http://mingw-users.1079350.n2.nabble.com/mingw-error-redefinition-of-struct-timespec-td7583722.html