===============写在前面( 这段可以不看) ================
我是想用C写一个接收解码红外信号的.so库,导出接口nec,使用时为:python开一个进程,把回调函数作为参数调用nec,它阻塞等待信号,当接收到信号时,解码后再回调函数,并再次阻塞等待信号
=================== 遇到的问题 =====================
c调用python正常,python调用c正常,
但是用python调用了内容里有调用python的.so时就报错了,Segmentation fault
我通过注释代码,判断出是运行到PyRun_SimpleString 时报错了。
以下是代码及编译运行参数:
================= c的代码 c_test.c =========================
#include <stdlib.h>
#include <stdio.h>
#include "Python.h"
//C中 定义两个函数,一个纯打印,一个调用python打印
void t()
{
printf("only c\n\n");
}
void t2()
{
Py_Initialize();
if ( !Py_IsInitialized())
{ return ;}
PyRun_SimpleString("print \"use python\" ");
Py_Finalize();
}
int main(int argc, char **argv)
{
t();
t2();
return 0;
}
======================== python 的代码 p_test.py ========================
import sys
import os
import ctypes
ll = ctypes.cdll.LoadLibrary
clib = ll("./c_test.so")
clib.t()
clib.t2()
========================= 编译 ===============================
gcc c_test.c -lpython2.7 -lwiringPi -I/usr/include/python2.7/ -L/usr/lib/python -shared -fPIC -o c_test.so
gcc c_test.c -lpython2.7 -lwiringPi -I/usr/include/python2.7/ -L/usr/lib/python
========================== 运行c ===============================
# ./a.out
only c
use python
========================= 运行python ============================
# python p_test.py
only c
Segmentation fault
我是想用C写一个接收解码红外信号的.so库,导出接口nec,使用时为:python开一个进程,把回调函数作为参数调用nec,它阻塞等待信号,当接收到信号时,解码后再回调函数,并再次阻塞等待信号
=================== 遇到的问题 =====================
c调用python正常,python调用c正常,
但是用python调用了内容里有调用python的.so时就报错了,Segmentation fault
我通过注释代码,判断出是运行到PyRun_SimpleString 时报错了。
以下是代码及编译运行参数:
================= c的代码 c_test.c =========================
#include <stdlib.h>
#include <stdio.h>
#include "Python.h"
//C中 定义两个函数,一个纯打印,一个调用python打印
void t()
{
printf("only c\n\n");
}
void t2()
{
Py_Initialize();
if ( !Py_IsInitialized())
{ return ;}
PyRun_SimpleString("print \"use python\" ");
Py_Finalize();
}
int main(int argc, char **argv)
{
t();
t2();
return 0;
}
======================== python 的代码 p_test.py ========================
import sys
import os
import ctypes
ll = ctypes.cdll.LoadLibrary
clib = ll("./c_test.so")
clib.t()
clib.t2()
========================= 编译 ===============================
gcc c_test.c -lpython2.7 -lwiringPi -I/usr/include/python2.7/ -L/usr/lib/python -shared -fPIC -o c_test.so
gcc c_test.c -lpython2.7 -lwiringPi -I/usr/include/python2.7/ -L/usr/lib/python
========================== 运行c ===============================
# ./a.out
only c
use python
========================= 运行python ============================
# python p_test.py
only c
Segmentation fault