c - "error: expected identifier or ' ( ' before ' { ' token"在 pthread.h 上编译 64 位时

标签 c multithreading 64-bit x86-64 windows-server-2008-x64

我发现了之前关于此错误消息的问题,但它们与我的情况不符,情况如下:

环境:Windows 8.1 和具有 64 位 GCC 配置的 CodeBlocks => How do I compile for 64bit using G++ w/ CodeBlocks?

问题:测试基本的多线程,=> https://www.geeksforgeeks.org/multithreading-c-2/中列出的简单程序如下:

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

// A normal C function that is executed as a thread 
// when its name is specified in pthread_create()
void *myThreadFun(void *vargp)
{
    sleep(1);
    printf("Printing GeeksQuiz from Thread \n");
    return NULL;
}

int main()
{
    pthread_t tid;
    printf("Before Thread\n");
    pthread_create(&tid, NULL, myThreadFun, NULL);
    pthread_join(tid, NULL);
    printf("After Thread\n");
    exit(0);
}

在标准 32 位中编译它可以完成并完美地工作,但是当使用 MinGW-64 ( How do I compile for 64bit using G++ w/ CodeBlocks? ) 编译时,它会失败,并在 pthread.h 上出现 4 个错误:

pthread.h|418|error: expected identifier or '(' before '{' token|
pthread.h|428|error: expected identifier or '(' before '{' token|
pthread.h|438|error: expected identifier or '(' before '{' token|
pthread.h|447|error: expected identifier or '(' before '{' token|

不言而喻,pthread.h 没有被以任何方式修改或更改。错误指向四行#define:

/* Recursive API emulation.  */
#undef localtime_r
#define localtime_r(_Time, _Tm) ({ struct tm *___tmp_tm;        \
                        pthread_testcancel();   \
                        ___tmp_tm = localtime((_Time));\
                        if (___tmp_tm) {    \
                          *(_Tm) = *___tmp_tm;  \
                          ___tmp_tm = (_Tm);    \
                        }           \
                        ___tmp_tm;  })

#undef gmtime_r
#define gmtime_r(_Time,_Tm) ({ struct tm *___tmp_tm;        \
                        pthread_testcancel();   \
                        ___tmp_tm = gmtime((_Time)); \
                        if (___tmp_tm) {    \
                          *(_Tm) = *___tmp_tm;  \
                          ___tmp_tm = (_Tm);    \
                        }           \
                        ___tmp_tm;  })

#undef ctime_r
#define ctime_r(_Time,_Str) ({ char *___tmp_tm;         \
                        pthread_testcancel();   \
                        ___tmp_tm = ctime((_Time));  \
                        if (___tmp_tm)      \
                         ___tmp_tm =        \
                           strcpy((_Str),___tmp_tm); \
                        ___tmp_tm;  })

#undef asctime_r
#define asctime_r(_Tm, _Buf)    ({ char *___tmp_tm;         \
                        pthread_testcancel();   \
                        ___tmp_tm = asctime((_Tm)); \
                        if (___tmp_tm)      \
                         ___tmp_tm =        \
                           strcpy((_Buf),___tmp_tm);\
                        ___tmp_tm;  })

其他程序在 64 位下可以正确编译和运行,运行时会在进程的详细信息中显示它。 我不明白为什么相同的未修改头文件仅在编译 64 位时才显示错误。构建日志显示:

-------------- Build: Debug in MultiThreadGCCx64 (compiler: GNU GCC Compiler x64)---------------

x86_64-w64-mingw32-gcc.exe -Wall -g -std=c99 -m64 -I"C:\Program Files (x86)\CodeBlocks\MinGW" -c Z:\CTemp\CProjects\MultiThreadGCCx64\main.c -o obj\Debug\main.o
In file included from Z:\CTemp\CProjects\MultiThreadGCCx64\main.c:11:0:
Z:\CTemp\CProjects\MultiThreadGCCx64\pthread.h:418:34: error: expected identifier or '(' before '{' token
 #define localtime_r(_Time, _Tm) ({ struct tm *___tmp_tm;  \
                                  ^
Z:\CTemp\CProjects\MultiThreadGCCx64\pthread.h:428:30: error: expected identifier or '(' before '{' token
 #define gmtime_r(_Time,_Tm) ({ struct tm *___tmp_tm;  \
                              ^
Z:\CTemp\CProjects\MultiThreadGCCx64\pthread.h:438:30: error: expected identifier or '(' before '{' token
 #define ctime_r(_Time,_Str) ({ char *___tmp_tm;   \
                              ^
Z:\CTemp\CProjects\MultiThreadGCCx64\pthread.h:447:31: error: expected identifier or '(' before '{' token
 #define asctime_r(_Tm, _Buf) ({ char *___tmp_tm;   \
                               ^
Z:\CTemp\CProjects\MultiThreadGCCx64\main.c: In function 'myThreadFun':
Z:\CTemp\CProjects\MultiThreadGCCx64\main.c:19:5: warning: implicit declaration of function 'sleep'; did you mean '_sleep'? [-Wimplicit-function-declaration]
     sleep(1);
     ^~~~~
     _sleep
Process terminated with status 1 (0 minute(s), 0 second(s))
4 error(s), 1 warning(s) (0 minute(s), 0 second(s))

我承认我只是这些领域(多线程、64位程序)的初学者,所以如果我所问的问题对专家来说非常明显,我很抱歉,但经过相当长的时间研究后我找不到任何帮助在之前的帖子中,我被困住了。

非常感谢您提供的任何帮助。

最佳答案

使用 64 位 MinGW 的 pthread.h,而不是复制或以其他方式使用 32 位 MinGW ( like you were apparently doing ) 中的 pthread.h

像这样的低级头文件特定于编译器,包括编译器版本和配置。

关于c - "error: expected identifier or ' ( ' before ' { ' token"在 pthread.h 上编译 64 位时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48061765/

相关文章:

Java - Desktop.getDesktop().browse(URI) 受支持,但无法打开文档(Citrix 问题?)

vb.net - 如果我在 win7 上编译 VB6 应用程序,ADODB.Connection 错误为 "Class does not support Automation or does not support expected interface"

python - 路径不能包含斜杠

C 检测空行

java - 如何按需暂停 Java 线程?

multithreading - 如何在Delphi XE7中同步TParallell以记录数据

c - 编写一个函数,反转第一列和最后一列的数组元素

根据用户输入创建可变数量的字符串变量(C语言)

java - 中断等待用户输入的线程

c++ - FindNextFile 在 64 位 Windows 上失败?