reply = redisCommand(rcontext,"HGET %u %u",env->cr[3] ,KeyHandle);
if(reply == NULL)
{
printf("in preNtDeletKey rediscommand error ! and the err type is %d the string is %s \n" ,rcontext->err,rcontext->errstr)";
}
这里我得到一个错误,回复返回NULL输出是
在 preNtDeletKey rediscommand 错误!错误类型为 1 字符串为Interrupted system call
我在我的项目中使用它。而且我在hiredis源中grep找不到中断的系统调用我想知道导致系统调用中断的原因hiredis如何将字符串写入redisContext(因为我在sourec中找不到)
我们如何避免被中断的系统调用?