1 Star 0 Fork 36

sigui/pcp

forked from src-openEuler/pcp 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0001-Fix-collectl2pcp-option.patch 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
lingsheng 提交于 2020-09-18 10:17 . Fix collect2pcp option
From 3d2902236c931a8022e5031043853e19484e3530 Mon Sep 17 00:00:00 2001
From: lingsheng <[email protected]>
Date: Fri, 18 Sep 2020 09:47:00 +0800
Subject: [PATCH] Fix collectl2pcp option
---
src/collectl2pcp/collectl2pcp.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/collectl2pcp/collectl2pcp.c b/src/collectl2pcp/collectl2pcp.c
index ceb73c6..ad44558 100644
--- a/src/collectl2pcp/collectl2pcp.c
+++ b/src/collectl2pcp/collectl2pcp.c
@@ -98,7 +98,7 @@ int indom_cnt[NUM_INDOMS];
/* global options */
int vflag;
-int Fflag;
+int fflag;
int kernel_all_hz;
int utc_offset;
@@ -112,7 +112,7 @@ static pmLongOptions longopts[] = {
};
static pmOptions opts = {
- .short_options = "FD:v?",
+ .short_options = "fD:v?",
.long_options = longopts,
.short_usage = "inputfile [inputfile ...] archive\n"
"Each 'inputfile' is a collectl archive, must be for the same host (may be gzipped).\n"
@@ -141,8 +141,8 @@ main(int argc, char *argv[])
while ((c = pmGetOptions(argc, argv, &opts)) != EOF) {
switch (c) {
- case 'F':
- Fflag = 1;
+ case 'f':
+ fflag = 1;
break;
case 'v':
vflag++;
@@ -166,7 +166,7 @@ main(int argc, char *argv[])
exit(1);
}
- if (Fflag) {
+ if (fflag) {
pmsprintf(buf, BUFSIZE, "%s.meta", archive); unlink(buf);
pmsprintf(buf, BUFSIZE, "%s.index", archive); unlink(buf);
for (j=0;; j++) {
--
2.23.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/si-gui/pcp.git
[email protected]:si-gui/pcp.git
si-gui
pcp
pcp
master

搜索帮助