我是Fortran和C ++的新手,负责完成两个用Fortran和C ++编写的程序。
我正在尝试创建一个pthread(分离的)包装器,并从我的Fortran子例程中调用它并将cpp函数传递给它。我按照此链接Calling a subroutine in FORTRAN without blocking the main program编写了一些代码。
当我执行它时,我得到如下所示的运行时错误。
Program received signal SIGSEGV: Segmentation fault - invalid memory reference.
Backtrace for this error:
我使用以下命令编译
gfortran-mp-4.7 -c pthread_mod.f90
g++-mp-4.7 -c -std=c++11 pcmodel.cpp
gfortran-mp-4.7 -c mainFort.F
gfortran-mp-4.7 pthreads_module.o pcmodel.o mainFort.o -o test -lstdc++
这是我可以重现错误的最小代码。
Pthreads_interface.h
extern "C" void pthread_create_opaque(pthread_t *threadptr, void *(**procptr)(void *), int *comerr){
// creates a new thread using an opaque pointer to the pthread_t structure
pthread_attr_t attr;
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
*comerr = pthread_create(threadptr, &attr, (*procptr), NULL);
}
pthreads_module.f90
module pthreads_module
implicit none
interface
subroutine pthread_create_opaque (threadptr, procptr, comerr) bind(C,name="pthread_create_opaque")
USE ISO_C_BINDING
type(c_ptr) :: threadptr
type(c_funptr),value :: procptr
integer(c_int),intent(out) :: comerr
end subroutine
subroutine PCModel () bind (c,name="PCModel_")
USE ISO_C_BINDING
end subroutine PCModel
end interface
end module pthreads_module
mainFort.F
program test
call BCL00
end program test
SUBROUTINE BCL00
use pthreads_module
USE ISO_C_BINDING
implicit none
type(c_ptr) :: threadptr
integer :: comerr
call pthread_create_opaque(threadptr,
& c_funloc(PCModel),comerr)
END
其中PCModel
是pthread要执行的C ++函数。
pcmodel.cpp
#include <iostream>
#include "pthreads_interface.h"
using namespace std;
void PCModel(){
cout<<"PCModel is called"<<endl;
}
extern "C" void PCModel_(){
PCModel();
}
一旦fortran代码触发线程启动C ++函数(PCModel
)
如果有人可以检查代码并帮助我,那就太好了。
答案 0 :(得分:0)
在Pthreads_interface.h中,我改变了procptr
从(*procptr)
传递到procptr
的方式
extern "C" void pthread_create_opaque(pthread_t *threadptr, void *(*procptr)(void *), int *comerr){
// creates a new thread using an opaque pointer to the pthread_t structure
pthread_attr_t attr;
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
*comerr = pthread_create(threadptr, &attr, procptr, NULL);
}
现在它在没有Segmentation fault
的情况下运行,主程序继续而不等待线程。