最近我一直在编写带有 C 扩展名的 python 模块。(python2.7,gcc 4.1.2)一旦完成并进行测试。我发现以下总线错误。
有人知道为什么吗?
ps 在我收到此错误之前。我修复了中描述的“返回 Py_False 相关错误”
应用程序在 c++ 中的 python 扩展函数中随机给出分段错误
核心是由python2.7 app.py --debug=False --multi_slaves=True
程序以信号 7 终止,总线错误。
#0 0x0000003d22272cf1 in _int_malloc () from /lib64/libc.so.6
(gdb) where
#0 0x0000003d22272cf1 in _int_malloc () from /lib64/libc.so.6
#1 0x0000003d22274e4e in malloc () from /lib64/libc.so .6
#2 0x00000000004d3069 in _PyObject_GC_Malloc (basicsize=<value optimized out>
) at Modules/gcmodule.c:1445
#3 0x000000000046408c in PyType_GenericAlloc (type=0x768360, nitems=0) at Objects/typeobject.c:753
#4 0x00000000004477ec in dict_new (type=0x3d225539e0 , args=, kwds=0x7fff8dcb4eb0) 在 Objects/dictobject.c:2301
#5 0x00000000004661c3 in type_call (type=0x3d225539e0, args=0x2b3e5a521050, kwds=0x2239bca0) 在 Objects/typeobject.c:721
#6 0x00000000004189cd in PyObject_Call (func=0x768360, arg=0x2b3e5a521050, kw=0x2239bca0) at Objects/abstract.c:2529
c扩展代码看起来像这样
static PyObject* analyze( PyObject *self, PyObject *args )
{
int ret;
char* in;
// global variables : void* obj, char* outbuf, int outbuf_size;
if (PyArg_ParseTuple(args, "s", &in)){
ret = process(obj, in, outbuf, outbuf_size);
if ( ret == SUCCESS ) {
PyObject* py_out = PyString_FromString(outbuf);
return py_out;
} else {
Py_INCREF(Py_False);
return Py_False;
}
} else {
Py_INCREF(Py_False);
return Py_False;
}
}
~