Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Startup Init Lite
提交
52223c6f
S
Startup Init Lite
项目概览
OpenHarmony
/
Startup Init Lite
1 年多 前同步成功
通知
3
Star
37
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Startup Init Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
52223c6f
编写于
9月 14, 2022
作者:
O
openharmony_ci
提交者:
Gitee
9月 14, 2022
浏览文件
操作
浏览文件
下载
差异文件
!1233 codex
Merge pull request !1233 from cheng_jinsong/codex
上级
69af8804
40626fb3
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
3 addition
and
5 deletion
+3
-5
services/init/init_service_manager.c
services/init/init_service_manager.c
+1
-1
services/loopevent/task/le_streamtask.c
services/loopevent/task/le_streamtask.c
+1
-1
services/modules/reboot/reboot.c
services/modules/reboot/reboot.c
+1
-1
services/param/watcher/agent/watcher_manager_kits.cpp
services/param/watcher/agent/watcher_manager_kits.cpp
+0
-2
未找到文件。
services/init/init_service_manager.c
浏览文件 @
52223c6f
...
...
@@ -140,7 +140,7 @@ void ReleaseService(Service *service)
FreeServiceSocket
(
service
->
socketCfg
);
FreeServiceFile
(
service
->
fileCfg
);
if
(
service
->
apl
!=
NULL
)
{
if
(
service
->
apl
!=
NULL
)
{
free
(
service
->
apl
);
service
->
apl
=
NULL
;
}
...
...
services/loopevent/task/le_streamtask.c
浏览文件 @
52223c6f
...
...
@@ -30,7 +30,7 @@ static LE_STATUS HandleSendMsg_(const LoopHandle loopHandle,
while
(
buffer
)
{
int
ret
=
write
(
GetSocketFd
(
taskHandle
),
buffer
->
data
,
buffer
->
dataSize
);
LE_LOGV
(
"HandleSendMsg_ fd:%d send data size %d %d"
,
GetSocketFd
(
taskHandle
),
buffer
->
dataSize
,
ret
);
buffer
->
result
=
(
ret
==
buffer
->
dataSize
)
?
0
:
errno
;
buffer
->
result
=
(
ret
==
(
int
)
buffer
->
dataSize
)
?
0
:
errno
;
if
(
complete
!=
NULL
)
{
complete
(
taskHandle
,
buffer
);
}
...
...
services/modules/reboot/reboot.c
浏览文件 @
52223c6f
...
...
@@ -112,7 +112,7 @@ static ModuleCmdInfo g_rebootCmdIds[] = {
static
void
RebootAdpInit
(
void
)
{
for
(
size_t
i
=
0
;
i
<
sizeof
(
g_rebootCmdIds
)
/
sizeof
(
g_rebootCmdIds
[
0
]);
i
++
)
{
g_rebootCmdIds
[
i
].
cmdId
=
AddCmdExecutor
(
g_rebootCmdIds
[
i
].
cmd
,
g_rebootCmdIds
[
i
].
executor
);
g_rebootCmdIds
[
i
].
cmdId
=
(
uint32_t
)
AddCmdExecutor
(
g_rebootCmdIds
[
i
].
cmd
,
g_rebootCmdIds
[
i
].
executor
);
}
}
...
...
services/param/watcher/agent/watcher_manager_kits.cpp
浏览文件 @
52223c6f
...
...
@@ -224,7 +224,6 @@ int WatcherManagerKits::ParamWatcher::AddParameterListener(ParameterChangePtr ca
continue
;
}
if
(
it
->
second
->
IsEqual
(
callback
,
context
))
{
WATCHER_LOGI
(
"AddParameterListener callback %p context %p exist"
,
callback
,
context
);
return
-
1
;
}
}
...
...
@@ -244,7 +243,6 @@ int WatcherManagerKits::ParamWatcher::DelParameterListener(ParameterChangePtr ca
if
((
callback
==
nullptr
&&
context
==
nullptr
))
{
RemoveParameterListener
(
index
);
}
else
if
(
listener
->
IsEqual
(
callback
,
context
))
{
WATCHER_LOGI
(
"DelParameterListener callback %p context %p"
,
callback
,
context
);
RemoveParameterListener
(
index
);
break
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录