- 论坛徽章:
- 0
|
代码如下:
int genTool::initDaemon(const char *pathname, int issetworkpath)
{
struct sigaction act, sa;
act.sa_handler = signalProcess;//函数句柄
.......
}
int genTool::installSignal()
{
.................
}
installSignal,initDaemon都是类genTool的成员函数,现在的问题是编译报:
"genTool.cpp", line 208.26: 1540-0286 (W) The unqualified member "signalProcess" should be qualified
with "::" and preceded by an "&" when forming an expression with type pointer-to-member.
"genTool.cpp", line 208.26: 1540-0216 (S) An expression of type "void (genTool::*)(int)" cannot be c
onverted to "extern "C" void (*)(int)".
请问在act.sa_handler = signalProcess这句中该如何写呢? |
|