- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我目前正在编写一个程序,它将读取文件/proc/stat 并解析每一行,将其存储为标记,然后最终在输出表中进行处理和表示。我正处于能够让程序解析程序的阶段,但是在将 token 存储在各种数组值中时,我收到错误:段错误(核心已转储)。我不确定是什么原因造成的,因为我已经分配了内存。我也几乎是 C 的初学者。
//standard input/output file to help with io operations
#include<stdio.h>
//standard library files to help with exit and other standard functions
#include<stdlib.h>
//header file for usleep function
#include <unistd.h>
#include <string.h> //header file for strtok function
int main()
{
//FILE pointer will need to be declared initially, in this example the name is fp
FILE *fp;
//A character pointer that will store each line within the file; you will need to parse this line to extract useful information
char *str = NULL;
//size_t defined within C is a unsigned integer; you may need this for getline(..) function from stdio.h to allocate buffer dynamically
size_t len = 0;
//ssize_t is used to represent the sizes of blocks that can be read or written in a single operation through getline(..). It is similar to size_t, but must be a signed type.
ssize_t read;
float cpu_line1[4];
float cpu_line2[4];
float cpu_line3[4];
float cpu_line4[4];
float cpu_line5[4];
float page[2];
float swap[2];
float intr;
float ctxt;
float btime;
//a variable declared to keep track of the number of times we read back the file
unsigned int sample_count = 0;
//opening the file in read mode; this file must be closed after you are done through fclose(..); note that explicit location of the file to ensure file can be found
fp = fopen("/proc/stat", "r");
//checking if the file opening was successful; if not we do not want to proceed further and exit with failure code right away
if(fp == NULL)
{
exit(EXIT_FAILURE);
}
int i = 0;
char **string = NULL; //declaration of string
string = (char**)malloc(10*sizeof(char*)); //assign space for 10 pointers to array
for (i=0; i<10; i++) //allocate 50 bytes to each string in the array
{
string[i] = (char*)malloc(50*sizeof(char));
}
char *s = NULL;
//a loop that will read one line in the file at a time; str will read the line; len will store the length of the file
while(1)
{
printf("\e[1;1H\e[2J"); //this line will make sure you have cleared the previous screen using C's powerful format specifiers
printf("----------------------------------------------------------------\n");//used for presentation
printf("Sample: %u\n", sample_count); //showing the sample count
int i = 0; //counter
while ((read = getline(&str, &len, fp)) != -1)
{
// printf("Retrieved line: \n%sof length: %zu, allocated buffer: %u :\n", str, read, (unsigned int) len);
s = strtok(str, " ");
printf("Test program: %s\n", s);
}
if (i=0)
{
sprintf(string[0], s);
cpu_line1[0] = atoi(strtok(NULL, " "));
cpu_line1[1] = atoi(strtok(NULL, " "));
cpu_line1[2] = atoi(strtok(NULL, " "));
cpu_line1[3] = atoi(strtok(NULL, " "));
}
if (i=1)
{
sprintf(string[1], s);
cpu_line2[0] = atoi(strtok(NULL, " "));
cpu_line2[1] = atoi(strtok(NULL, " "));
cpu_line2[2] = atoi(strtok(NULL, " "));
cpu_line2[3] = atoi(strtok(NULL, " "));
}
if (i=2)
{
sprintf(string[2], s);
cpu_line3[0] = atoi(strtok(NULL, " "));
cpu_line3[1] = atoi(strtok(NULL, " "));
cpu_line3[2] = atoi(strtok(NULL, " "));
cpu_line3[3] = atoi(strtok(NULL, " "));
}
if (i=3)
{
sprintf(string[3], s);
cpu_line4[0] = atoi(strtok(NULL, " "));
cpu_line4[1] = atoi(strtok(NULL, " "));
cpu_line4[2] = atoi(strtok(NULL, " "));
cpu_line4[3] = atoi(strtok(NULL, " "));
}
if (i=4)
{
sprintf(string[4], s);
cpu_line5[0] = atoi(strtok(NULL, " "));
cpu_line5[1] = atoi(strtok(NULL, " "));
cpu_line5[2] = atoi(strtok(NULL, " "));
cpu_line5[3] = atoi(strtok(NULL, " "));
}
if(i=5)
{
sprintf(string[5], s);
page[0] = atoi(strtok(NULL, " "));
page[1] = atoi(strtok(NULL, " "));
}
if(i=6)
{
sprintf(string[6], s);
swap[0] = atoi(strtok(NULL, " "));
swap[1] = atoi(strtok(NULL, " "));
}
if(i=7)
{
sprintf(string[7], s);
intr = atoi(strtok(NULL, " "));
}
if(i=8)
{
sprintf(string[8], s);
ctxt = atoi(strtok(NULL, " "));
}
if(i=9)
{
sprintf(string[9], s);
btime = atoi(strtok(NULL, " "));
}
printf("----------------------------------------------------------------\n"); //used for presentation
usleep(500000);//this will ensure time delay
rewind(fp);//rewind the file pointer to start reading from the beginning
sample_count++;//update the sample count
}
//Frees pointers to make program memory efficient
free(str);
for (i=0; i <10; i++)
{
free(string[i]);
}
//once you are done, you should also close all file pointers to make your program memory efficient
fclose(fp);
return 0;
编辑这是程序在 Cygwin 中运行时的样子的副本
样本:0
测试程序:cpu
测试程序:cpu0
测试程序:cpu1
测试程序:cpu2
测试程序:cpu3
测试程序:页面
测试程序:swap
测试程序:intr
测试程序:ctxt
测试程序:btime
段错误(核心转储)
最佳答案
除其他事项外,您的条件不正确:
if (i = 1) {
// do something.
}
这会将值 1
分配给 i
而不是与 1
进行比较。尝试条件为 i == 1
。
关于c - 解析程序: Segmentation fault (core dumped),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34338633/
我正在研究 MySQL 用户定义函数 (UDF),它基本上是 Windows 系统函数的包装器。我的问题是 UDF 对于某些输入按预期工作,但会导致 mysqld 对于其他输入崩溃。 UDF 本身采用
我在 this 中搜索过官方文档查找python中 json.dump() 和 json.dumps() 之间的区别。很明显,它们与文件写入选项有关。 但是它们之间的详细区别是什么?在什么情况下一个比
以前写的很简单,只有几句话,最近发现本文是本博客阅读量最大的一篇文章,觉得这样有种把人骗进来的感觉,于是又细化了一些。如果还有不好的地方,欢迎指出。 首先说明基本功能: dumps是将dict转
有没有办法在运行 'erl' 时禁用“崩溃转储”和“核心转储”文件的生成? PS:我知道 erl 的“+d”选项,但我想完全禁用崩溃/核心转储的生成。 最佳答案 您还可以将 ERL_CRASH_DUM
这是一个错误吗? >>> import json >>> import cPickle >>> json.dumps(cPickle.dumps(u'å')) Traceback (most rece
我已经开始了解用于对象序列化和反序列化的pickle模块了。 我知道pickle.dump是用来将代码存储为字节流(序列化),而pickle.load本质上是相反的,转成流字节返回到 python 对
我有一个这种格式的字符串, d = {'details': {'hawk_branch': {'tandem': ['4210bnd72']}, 'uclif_branch': {'tandem':
下面是我的python代码 r = requests.get("https://www.googleapis.com/youtube/v3/search?part=snippet&maxResults
我正在使用 PigLatin,使用 grunt,每次我“转储”东西时,我的控制台都会被诸如此类、诸如此类的非信息所破坏,有没有办法抑制这一切? grunt> A = LOAD 'testingData
我正在尝试将 mongodump 编辑的一组 .bson 文件 mongorestore 到位于 docker 中的 mongo 数据库,在我只有 SSH 访问权限的 Ubuntu 实例上。 我有一个
我正在尝试使用语音发送文本 watson api,但是当我设置 interim_results = True 时,我收到了值错误。请帮助我:) with open(join(dirname(__fil
鉴于 dump.rdb(或 .json 格式)文件中现有 redis 数据库的快照,我想在我自己的机器上恢复此数据以在其上运行一些测试。 任何有关如何执行此操作的指示都将不胜感激。 我尝试解析 dum
我对 Laravel 4 和 Composer 还是很陌生。当我做 Laravel 4 教程时,我无法理解这两个命令之间的区别; php artisan dump-autoload 和 compose
之间有区别吗 object = {1:"one", 2:"two", 3:"three"} file.write(json.dumps(object)) 和 json.dump(object) .如果
导出/导入整个模式的旧方法: exp user/pwdp@server FILE=export.dmp OWNER=user ROWS=Y imp newuser/pwd@server FULL=
我有一堆需要恢复的 mongo 数据库。我使用 mongodump 获取备份目录,其中包括其中的集合。像这样: |- mydir |-- db1 |--- collection1 |--- colle
尽管我在 root 下运行 dotnet-dump,并且进程在 root 下运行(请参阅下面的服务描述),但似乎我缺乏一些权限。 我还尝试了 home、var 和 tmp 中的其他目录:所有相同的消息
我正在尝试生成 LLVM IR 代码,作为 Kaleidoscope tutorial 的一部分我已成功完成在同一台机器上,使用这些相同的编译器标志。 我的代码在 clang++ 3.4 中编译没有错
我正在使用 eclipse 开发 Web 应用程序,当我尝试从 eclipse 中在服务器上运行我的应用程序时遇到了问题。 # # A fatal error has been detected by
给定一个任意的 picklable Python 数据结构data,是 with open('a', 'bw') as f: f.write(pickle.dumps(data)) 相当于 w
我是一名优秀的程序员,十分优秀!