Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
226ad981
L
libvirt
项目概览
openeuler
/
libvirt
通知
3
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
L
libvirt
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
226ad981
编写于
12月 13, 2012
作者:
D
Daniel P. Berrange
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Rename sexpr.{c,h} to virsexpr.{c,h}
上级
f56c773b
变更
8
显示空白变更内容
内联
并排
Showing
8 changed file
with
37 addition
and
15 deletion
+37
-15
cfg.mk
cfg.mk
+1
-1
po/POTFILES.in
po/POTFILES.in
+1
-1
src/Makefile.am
src/Makefile.am
+1
-1
src/util/virsexpr.c
src/util/virsexpr.c
+16
-5
src/util/virsexpr.h
src/util/virsexpr.h
+15
-4
src/xen/xend_internal.c
src/xen/xend_internal.c
+1
-1
src/xenxs/xen_sxpr.h
src/xenxs/xen_sxpr.h
+1
-1
src/xenxs/xen_xm.c
src/xenxs/xen_xm.c
+1
-1
未找到文件。
cfg.mk
浏览文件 @
226ad981
...
...
@@ -807,7 +807,7 @@ exclude_file_name_regexp--sc_prohibit_sprintf = \
exclude_file_name_regexp--sc_prohibit_strncpy
=
^src/util/util
\.
c
$$
exclude_file_name_regexp--sc_prohibit_strtol
=
\
^src/
(
util/sexpr|
(
vbox|xen|xenxs
)
/.
*
)
\.
c
$$
^src/
(
util/
vir
sexpr|
(
vbox|xen|xenxs
)
/.
*
)
\.
c
$$
exclude_file_name_regexp--sc_prohibit_xmlGetProp
=
^src/util/xml
\.
c
$$
...
...
po/POTFILES.in
浏览文件 @
226ad981
...
...
@@ -139,7 +139,6 @@ src/test/test_driver.c
src/uml/uml_conf.c
src/uml/uml_driver.c
src/util/iohelper.c
src/util/sexpr.c
src/util/stats_linux.c
src/util/storage_file.c
src/util/sysinfo.c
...
...
@@ -174,6 +173,7 @@ src/util/virpci.c
src/util/virpidfile.c
src/util/virprocess.c
src/util/virrandom.c
src/util/virsexpr.c
src/util/virsocketaddr.c
src/util/virterror.c
src/util/virterror_internal.h
...
...
src/Makefile.am
浏览文件 @
226ad981
...
...
@@ -53,7 +53,6 @@ augeastest_DATA =
# These files are not related to driver APIs. Simply generic
# helper APIs for various purposes
UTIL_SOURCES
=
\
util/sexpr.c util/sexpr.h
\
util/stats_linux.c util/stats_linux.h
\
util/storage_file.c util/storage_file.h
\
util/sysinfo.c util/sysinfo.h
\
...
...
@@ -87,6 +86,7 @@ UTIL_SOURCES = \
util/virpci.c util/virpci.h
\
util/virpidfile.c util/virpidfile.h
\
util/virprocess.c util/virprocess.h
\
util/virsexpr.c util/virsexpr.h
\
util/virtypedparam.c util/virtypedparam.h
\
util/xml.c util/xml.h
\
util/virterror.c util/virterror_internal.h
\
...
...
src/util/sexpr.c
→
src/util/
vir
sexpr.c
浏览文件 @
226ad981
/*
* sexpr.c : S-Expression routines to communicate with the Xen Daemon
*
vir
sexpr.c : S-Expression routines to communicate with the Xen Daemon
*
* Copyright (C) 2010-2011 Red Hat, Inc.
* Copyright (C) 2005 Anthony Liguori <aliguori@us.ibm.com>
*
* This file is subject to the terms and conditions of the GNU Lesser General
* Public License. See the file COPYING.LIB in the main directory of this
* archive for more details.
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include <config.h>
...
...
@@ -18,7 +29,7 @@
#include <errno.h>
#include "virterror_internal.h"
#include "sexpr.h"
#include "
vir
sexpr.h"
#include "util.h"
#include "viralloc.h"
...
...
src/util/sexpr.h
→
src/util/
vir
sexpr.h
浏览文件 @
226ad981
/*
* sexpr.h : S-Expression interfaces needed to communicate with the Xen Daemon
*
vir
sexpr.h : S-Expression interfaces needed to communicate with the Xen Daemon
*
* Copyright (C) 2012 Red Hat, Inc.
* Copyright (C) 2005 Anthony Liguori <aliguori@us.ibm.com>
*
* This file is subject to the terms and conditions of the GNU Lesser General
* Public License. See the file COPYING.LIB in the main directory of this
* archive for more details.
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#ifndef _LIBVIR_SEXPR_H_
...
...
src/xen/xend_internal.c
浏览文件 @
226ad981
...
...
@@ -35,7 +35,7 @@
#include "xend_internal.h"
#include "driver.h"
#include "util.h"
#include "sexpr.h"
#include "
vir
sexpr.h"
#include "xen_sxpr.h"
#include "virbuffer.h"
#include "uuid.h"
...
...
src/xenxs/xen_sxpr.h
浏览文件 @
226ad981
...
...
@@ -30,7 +30,7 @@
# include "internal.h"
# include "virconf.h"
# include "domain_conf.h"
# include "sexpr.h"
# include "
vir
sexpr.h"
typedef
enum
{
XEND_CONFIG_VERSION_3_0_2
=
1
,
...
...
src/xenxs/xen_xm.c
浏览文件 @
226ad981
...
...
@@ -31,7 +31,7 @@
#include "viralloc.h"
#include "verify.h"
#include "uuid.h"
#include "sexpr.h"
#include "
vir
sexpr.h"
#include "count-one-bits.h"
#include "xenxs_private.h"
#include "xen_xm.h"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录