Ai
1 Star 1 Fork 5

aosp-riscv/platform_bionic

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
sys_procfs_test.cpp 1.56 KB
一键复制 编辑 原始数据 按行查看 历史
Elliott Hughes 提交于 2020-09-04 03:31 +08:00 . NGREG != ELF_NGREG.
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <gtest/gtest.h>
#include <sys/procfs.h>
TEST(sys_procfs, types) {
elf_greg_t reg;
memset(&reg, 0, sizeof(reg));
elf_gregset_t regs;
memset(&regs, 0, sizeof(regs));
elf_fpregset_t fp_regs;
memset(&fp_regs, 0, sizeof(fp_regs));
prgregset_t pr_g_regs;
memset(&pr_g_regs, 0, sizeof(pr_g_regs));
prfpregset_t pr_fp_regs;
memset(&pr_fp_regs, 0, sizeof(pr_fp_regs));
static_assert(sizeof(prgregset_t) == sizeof(elf_gregset_t), "");
static_assert(sizeof(prfpregset_t) == sizeof(elf_fpregset_t), "");
}
TEST(sys_procfs, constants) {
// NGREG != ELF_NGREG (https://github.com/android/ndk/issues/1347)
static_assert(sizeof(gregset_t) / sizeof(greg_t) == NGREG);
#if defined(__arm__)
static_assert(sizeof(user_regs) / sizeof(elf_greg_t) == ELF_NGREG);
#elif defined(__aarch64__)
static_assert(sizeof(user_pt_regs) / sizeof(elf_greg_t) == ELF_NGREG);
#else
static_assert(sizeof(user_regs_struct) / sizeof(elf_greg_t) == ELF_NGREG);
#endif
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/aosp-riscv/platform_bionic.git
git@gitee.com:aosp-riscv/platform_bionic.git
aosp-riscv
platform_bionic
platform_bionic
riscv64-android-12.0.0_dev

搜索帮助