Commit 7d285570 authored by 黄振令's avatar 黄振令

【修改内容】nanomsg修改回及时发送,不然如果那个应用没起来会死等

parent ebff3b9d
...@@ -410,9 +410,9 @@ int kk_ipc_send_ex(ipc_type type, void* data, int len, char* chalMark) ...@@ -410,9 +410,9 @@ int kk_ipc_send_ex(ipc_type type, void* data, int len, char* chalMark)
memcpy(buf + filterlen, data, len); memcpy(buf + filterlen, data, len);
if (type == IPC_MID2PLAT){ if (type == IPC_MID2PLAT){
nn_send(Mloop_ctrl.ab.n, &buf, NN_MSG, 0);//NN_DONTWAIT nn_send(Mloop_ctrl.ab.n, &buf, NN_MSG, NN_DONTWAIT);//NN_DONTWAIT
}else{ }else{
nn_send(Bloop_ctrl.ba.n, &buf, NN_MSG, 0); nn_send(Bloop_ctrl.ba.n, &buf, NN_MSG, NN_DONTWAIT);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment