Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c30663643c | ||
|
|
01e8b507c6 |
@@ -74,6 +74,13 @@ make runtest
|
|||||||
|
|
||||||
========
|
========
|
||||||
|
|
||||||
|
版本说明:
|
||||||
|
--V1.22 --
|
||||||
|
2021-12-13
|
||||||
|
1)修复问题:华为5885V3型号服务器科东应用启动网卡监视程序检测到失败
|
||||||
|
问题描述:使用科东应用启动工具启动网卡监视程序失败
|
||||||
|
解决办法:修改调用科东注册接口函数位置,提升优先级优先调用。
|
||||||
|
|
||||||
版本说明:
|
版本说明:
|
||||||
--V1.21 --
|
--V1.21 --
|
||||||
2019-09-05
|
2019-09-05
|
||||||
|
|||||||
@@ -1544,11 +1544,6 @@ int main(int argc, char ** argv)
|
|||||||
sys_nic_debug = 1;
|
sys_nic_debug = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(&conf, 0, sizeof(CONFIG_FILE_ST));
|
|
||||||
if(isrun(argv[0]) == 1){
|
|
||||||
printf("the program is already started!\n");
|
|
||||||
exit(0);
|
|
||||||
}
|
|
||||||
//process register
|
//process register
|
||||||
#ifndef TESTINTERVAL
|
#ifndef TESTINTERVAL
|
||||||
if((proc_stat=prcm.proc_init("sys","base_srv","sys_nicmonitor"))==-1){
|
if((proc_stat=prcm.proc_init("sys","base_srv","sys_nicmonitor"))==-1){
|
||||||
@@ -1557,6 +1552,12 @@ int main(int argc, char ** argv)
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
memset(&conf, 0, sizeof(CONFIG_FILE_ST));
|
||||||
|
if(isrun(argv[0]) == 1){
|
||||||
|
printf("the program is already started!\n");
|
||||||
|
exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
sig.sa_handler = sig_handler;
|
sig.sa_handler = sig_handler;
|
||||||
sigemptyset(&sig.sa_mask);
|
sigemptyset(&sig.sa_mask);
|
||||||
sigaddset(&sig.sa_mask, SIGINT);
|
sigaddset(&sig.sa_mask, SIGINT);
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
// version=1.20
|
// version=1.22
|
||||||
#ifndef MNIC_VERSION
|
#ifndef MNIC_VERSION
|
||||||
#define MNIC_VERSION "1.21"
|
#define MNIC_VERSION "1.22"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user