3 Star 0 Fork 0

mirrors_git_kernel_org/pub_scm_utils_mdadm_mdadm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
xmalloc.c 1.66 KB
一键复制 编辑 原始数据 按行查看 历史
Anna Sztukowska 提交于 2024-10-09 08:14 . mdadm: Add mdadm_status.h
/* mdadm - manage Linux "md" devices aka RAID arrays.
*
* Copyright (C) 2001-2009 Neil Brown <[email protected]>
*
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Author: Neil Brown
* Email: <[email protected]>
*/
#include "xmalloc.h"
#include "mdadm_status.h"
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
static void *exit_memory_alloc_failure(void)
{
fprintf(stderr, "Memory allocation failure - aborting\n");
exit(MDADM_STATUS_MEM_FAIL);
}
void *xmalloc(size_t len)
{
void *rv = malloc(len);
if (rv)
return rv;
return exit_memory_alloc_failure();
}
void *xrealloc(void *ptr, size_t len)
{
void *rv = realloc(ptr, len);
if (rv)
return rv;
return exit_memory_alloc_failure();
}
void *xcalloc(size_t num, size_t size)
{
void *rv = calloc(num, size);
if (rv)
return rv;
return exit_memory_alloc_failure();
}
char *xstrdup(const char *str)
{
char *rv = strdup(str);
if (rv)
return rv;
return exit_memory_alloc_failure();
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_git_kernel_org/pub_scm_utils_mdadm_mdadm.git
[email protected]:mirrors_git_kernel_org/pub_scm_utils_mdadm_mdadm.git
mirrors_git_kernel_org
pub_scm_utils_mdadm_mdadm
pub_scm_utils_mdadm_mdadm
master

搜索帮助