Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
libvirt
提交
0b74bc62
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,发现更多精彩内容 >>
提交
0b74bc62
编写于
10月 27, 2009
作者:
D
Dan Kenigsberg
提交者:
Matthias Bolte
10月 27, 2009
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix some typos in comments
上级
74c81b5d
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
14 addition
and
14 deletion
+14
-14
daemon/libvirtd.c
daemon/libvirtd.c
+1
-1
src/datatypes.c
src/datatypes.c
+2
-2
src/libvirt.c
src/libvirt.c
+11
-11
未找到文件。
daemon/libvirtd.c
浏览文件 @
0b74bc62
...
...
@@ -812,7 +812,7 @@ static struct qemud_server *qemudInitialize(int sigread) {
#ifdef WITH_DRIVER_MODULES
/* We don't care if any of these fail, because the whole point
* is to allow users to only install modules they want to use.
* If they try to
use a
open a connection for a module that
* If they try to open a connection for a module that
* is not loaded they'll get a suitable error at that point
*/
virDriverLoadModule
(
"network"
);
...
...
src/datatypes.c
浏览文件 @
0b74bc62
...
...
@@ -71,7 +71,7 @@ virNetworkFreeName(virNetworkPtr network, const char *name ATTRIBUTE_UNUSED)
/**
* virInterfaceFreeName:
* @interface: a interface object
* @interface: a
n
interface object
*
* Destroy the interface object, this is just used by the interface hash callback.
*
...
...
@@ -674,7 +674,7 @@ _("Failed to change interface mac address from %s to %s due to differing lengths
* virReleaseInterface:
* @interface: the interface to release
*
* Unconditionally release all memory associated with a interface.
* Unconditionally release all memory associated with a
n
interface.
* The conn.lock mutex must be held prior to calling this, and will
* be released prior to this returning. The interface obj must not
* be used once this method returns.
...
...
src/libvirt.c
浏览文件 @
0b74bc62
...
...
@@ -291,7 +291,7 @@ virInitialize(void)
#ifdef WITH_DRIVER_MODULES
/* We don't care if any of these fail, because the whole point
* is to allow users to only install modules they want to use.
* If they try to
use a
open a connection for a module that
* If they try to open a connection for a module that
* is not loaded they'll get a suitable error at that point
*/
virDriverLoadModule
(
"test"
);
...
...
@@ -2050,7 +2050,7 @@ error:
* virDomainResume:
* @domain: a domain object
*
* Resume a
n
suspended domain, the process is restarted from the state where
* Resume a suspended domain, the process is restarted from the state where
* it was frozen by calling virSuspendDomain().
* This function may requires privileged access
*
...
...
@@ -3999,7 +3999,7 @@ error:
*
* The path parameter is the name of the network interface.
*
* Domains may have more than network interface. To get stats for
* Domains may have more than
one
network interface. To get stats for
* each you should make multiple calls to this function.
*
* Individual fields within the stats structure may be returned
...
...
@@ -4680,7 +4680,7 @@ error:
* @domain: pointer to domain object, or NULL for Domain0
* @info: pointer to an array of virVcpuInfo structures (OUT)
* @maxinfo: number of structures in info array
* @cpumaps: pointer to a
n
bit map of real CPUs for all vcpus of this
* @cpumaps: pointer to a bit map of real CPUs for all vcpus of this
* domain (in 8-bit bytes) (OUT)
* If cpumaps is NULL, then no cpumap information is returned by the API.
* It's assumed there is <maxinfo> cpumap in cpumaps array.
...
...
@@ -9202,7 +9202,7 @@ error:
* @xml: XML describing the secret.
* @flags: flags, use 0 for now
*
* If XML specifies a
n
UUID, locates the specified secret and replaces all
* If XML specifies a UUID, locates the specified secret and replaces all
* attributes of the secret specified by UUID by attributes specified in xml
* (any attributes not specified in xml are discarded).
*
...
...
@@ -9713,7 +9713,7 @@ virStreamRef(virStreamPtr stream)
* with the call, but may instead be delayed until a
* subsequent call.
*
* A example using this with a hypothetical file upload
* A
n
example using this with a hypothetical file upload
* API looks like
*
* virStreamPtr st = virStreamNew(conn, 0);
...
...
@@ -9805,7 +9805,7 @@ error:
* with the call, but may instead be delayed until a
* subsequent call.
*
* A example using this with a hypothetical file download
* A
n
example using this with a hypothetical file download
* API looks like
*
* virStreamPtr st = virStreamNew(conn, 0);
...
...
@@ -9896,7 +9896,7 @@ error:
* requested data source. This is simply a convenient alternative
* to virStreamSend, for apps that do blocking-I/o.
*
* A example using this with a hypothetical file upload
* A
n
example using this with a hypothetical file upload
* API looks like
*
* int mysource(virStreamPtr st, char *buf, int nbytes, void *opaque) {
...
...
@@ -9993,7 +9993,7 @@ cleanup:
* requested data sink. This is simply a convenient alternative
* to virStreamRecv, for apps that do blocking-I/o.
*
* A example using this with a hypothetical file download
* A
n
example using this with a hypothetical file download
* API looks like
*
* int mysink(virStreamPtr st, const char *buf, int nbytes, void *opaque) {
...
...
@@ -10174,7 +10174,7 @@ error:
* virStreamEventRemoveCallback:
* @stream: pointer to the stream object
*
* Remove a event callback from the stream
* Remove a
n
event callback from the stream
*
* Returns 0 on success, -1 on error
*/
...
...
@@ -10297,7 +10297,7 @@ error:
* Decrement the reference count on a stream, releasing
* the stream object if the reference count has hit zero.
*
* There must not be a active data transfer in progress
* There must not be a
n
active data transfer in progress
* when releasing the stream. If a stream needs to be
* disposed of prior to end of stream being reached, then
* the virStreamAbort function should be called first.
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录