Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
4f01a581
T
Third Party Musl
项目概览
OpenHarmony
/
Third Party Musl
1 年多 前同步成功
通知
37
Star
125
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Musl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
4f01a581
编写于
10月 24, 2022
作者:
Y
yanmengzhao1
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
allow other static linked libraries call musl hilog adapter
Signed-off-by:
N
yanmengzhao1
<
yanmengzhao1@huawei.com
>
上级
6931665e
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
7 addition
and
3 deletion
+7
-3
porting/linux/user/src/hilog/hilog_adapter.c
porting/linux/user/src/hilog/hilog_adapter.c
+3
-1
porting/linux/user/src/hilog/vsnprintf_s_p.c
porting/linux/user/src/hilog/vsnprintf_s_p.c
+4
-2
未找到文件。
porting/linux/user/src/hilog/hilog_adapter.c
浏览文件 @
4f01a581
...
...
@@ -91,7 +91,8 @@ static int SendMessage(HilogMsg *header, const char *tag, uint16_t tagLen, const
return
ret
;
}
static
int
HiLogAdapterPrintArgs
(
HILOG_LOCAL_API
int
HiLogAdapterPrintArgs
(
const
LogType
type
,
const
LogLevel
level
,
const
unsigned
int
domain
,
const
char
*
tag
,
const
char
*
fmt
,
va_list
ap
)
{
char
buf
[
MAX_LOG_LEN
]
=
{
0
};
...
...
@@ -112,6 +113,7 @@ static int HiLogAdapterPrintArgs(
return
SendMessage
(
&
header
,
tag
,
tagLen
+
1
,
buf
,
logLen
+
1
);
}
HILOG_LOCAL_API
int
HiLogAdapterPrint
(
LogType
type
,
LogLevel
level
,
unsigned
int
domain
,
const
char
*
tag
,
const
char
*
fmt
,
...)
{
if
(
!
HiLogAdapterIsLoggable
(
domain
,
tag
,
level
))
{
...
...
porting/linux/user/src/hilog/vsnprintf_s_p.c
浏览文件 @
4f01a581
...
...
@@ -20,6 +20,8 @@
#include <stdio.h>
#include "malloc_impl.h"
/* Do not malloc in vsnprintf, thus the log api can be called inside signal handler*/
#define HILOG_PROHIBIT_ALLOCATION
/* Define the max length of the string */
#ifndef SECUREC_STRING_MAX_LEN
...
...
@@ -137,8 +139,8 @@ typedef enum {
#endif
#else
#define SECUREC_MALLOC(x) (
nullptr
)
#define SECUREC_FREE(x)
{ printf("Malloc is not allowed, so free should not be possible to execute!"); std::abort();
}
#define SECUREC_MALLOC(x) (
NULL
)
#define SECUREC_FREE(x)
{
}
#endif
#if (defined(_WIN32) || defined(_WIN64) || defined(_MSC_VER)) || defined(__ARMCC_VERSION)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录