1 Star 0 Fork 0

SR达人/skiboot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
coverity-model.c 515 Bytes
一键复制 编辑 原始数据 按行查看 历史
void __attribute__((noreturn)) _abort(void) {
__coverity_panic__();
}
void *__memalign(size_t blocksize, size_t bytes, const char *location) {
__coverity_alloc__(bytes);
}
void mem_free(struct mem_region *region, void *mem, const char *location) {
__coverity_free__(mem);
}
void lock_caller(struct lock *l, const char *caller)
{
__coverity_exclusive_lock_acquire__(l);
}
void unlock(struct lock *l) {
__coverity_exclusive_lock_release__(l);
}
static inline void cpu_relax(void) {
__coverity_sleep__();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sr-master/skiboot.git
git@gitee.com:sr-master/skiboot.git
sr-master
skiboot
skiboot
master

搜索帮助