Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
10-03-2002, 09:39 PM
|
#1
|
|
Member
Registered: Jun 2002
Location: Jackson, TN
Distribution: Arch Linux 0.6
Posts: 60
Rep:
|
My program is seg faulting?
Hey guys... I'm trying to right this program to read basic info from /proc files and display it on the screen. The problem is it seg faults and I don't know why :\
Quote:
#include <stdio.h>
#include <stdlib.h>
void cpu( void )
{
char item[50];
FILE *cfPtr;
if( ( cfPtr = fopen( "/proc/cpuinfo", "r" ) ) == NULL ){ printf( "Error, make sure /proc fs is mounted\n" ); }
else{
printf( "\n" );
while( !feof( cfPtr ) ){
fgets( item, 100, cfPtr );
if( item[0] == 'v' && item[1] == 'e' && item[2] == 'n' && item[3] == 'd' ){
printf( "%s", item );
}
if( item[0] == 'm' && item[1] == 'o' && item[2] == 'd' && item[3] == 'e' && item[4] == 'l' && item[6] == 'n' ){
printf( "%s", item );
}
}
fclose( cfPtr );
}
}
void ver( void )
{
char item[50];
FILE *cfPtr;
if( ( cfPtr = fopen( "/proc/version", "r" ) ) == NULL ){ printf( "Error, make sure /proc fs is mounted\n" ); }
else{
while( !feof( cfPtr ) ){
fgets( item, 100, cfPtr );
printf( "%s", item );
}
}
fclose( cfPtr );
}
void up( void )
{
char item[50];
FILE *cfPtr;
if( ( cfPtr = fopen( "/proc/uptime", "r" ) ) == NULL ){ printf( "Error, make sure /proc fs is mounted\n" ); }
else{
while( !feof( cfPtr ) ){
fgets( item, 100, cfPtr );
printf( "%s", item );
}
}
fclose( cfPtr );
}
int main( void )
{
printf( "CPU data: " );
cpu();
printf( "\n" );
printf( "Kernel Version: " );
ver();
printf( "\n" );
printf( "Uptime: " );
up();
return 0;
}
|
It seg faults somewhere between printing the cpu model and printing the new line in main. If I comment out cpu(); so it doesn't run it segfaults at the end of up(); but ver(); seems to run fine
|
|
|
|
10-03-2002, 10:36 PM
|
#2
|
|
Member
Registered: Apr 2002
Distribution: Slackware
Posts: 114
Rep:
|
char item[50];
fgets( item, 100, cfPtr );
Sorry but this doesn't work. You've only allocated space for 49 characters and then you're allowing up to 100 to be stuffed there. Guaranteed segfault territory.
Either use properly-sized arrays or malloc() enough memory for the task. C doesn't have on-the-fly memory compression yet :-)
You may also want to try the various strcmp/strstr functions instead of going char by char.
|
|
|
|
10-06-2002, 02:32 AM
|
#3
|
|
Member
Registered: Jun 2002
Location: Jackson, TN
Distribution: Arch Linux 0.6
Posts: 60
Original Poster
Rep:
|
Thanks, knew it would be something stupid :\
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 07:57 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|