Tagged Questions
2
votes
1answer
159 views
Simple char device driver / module - Linux RedHat 8 (2.4.18) on VM segmentation fault after ./module_unload
edit: I fixed the code and turned it to a more compact code regarding memory allocations, everything works now . You might aware me if I'm doing something wrong
I'm not sure that the Write&Read ...
0
votes
2answers
145 views
When I turn O_NONBLOCK on i get “0” and “I/O error”
When I turn on O_NONBLOCK my connection len returns 0 and my errno returns EIO. I am expecting len to be -1 and errno to be EAGAIN. Based on what I am getting I can assume there is a problem with ...
1
vote
2answers
124 views
How to check whether day light savings enabled for the given UTC offset?
I need to determine whether day light savings enabled for a given UTC offset in Linux(Redhat).
I get input such as UTC+05:30.
I checked the usage of zdump command. When used with time zone name, we ...
1
vote
1answer
4k views
error while loading shared libraries: libcudart.so.4: cannot open shared object file: No such file or directory
I am trying to execute MPI and CUDA code on a cluster. The code works fine on single machine but when I try to execute it on cluster I get error:
error while loading shared libraries: libcudart.so.4: ...
0
votes
1answer
126 views
C pointer strangely self incrementing into unkown value during execution
I'm facing an error due to "pointer corruption" in my program.
Here's the faulty code that's leading to a crash.
list_ptr = list_head;
while(list_ptr) {
printf("The value of list ptr is now ...
0
votes
3answers
224 views
Advance Programming in the Unix Environment: Get Configuration Limits Figure 2.12 “Build C Program to print all supported configuration limits”
The author claims that his awk script will print out all the limits for a POSIX.1 and XSI compliant system. I am using Red Hat Enterprise Linux Server release 6.0 (Santiago). When I run his awk script ...
0
votes
2answers
869 views
LDAP connection ldap_sasl_bind_s gives assertion
So I'm developing an LDAP application on Red Hat 5.5.
I've not done LDAP before so I'm reading documents as I go along. I'm using OpenLDAP version 2.3
My source code looks like the following:
...
1
vote
2answers
174 views
Ubuntu vs. Red Hat errors
I have a C code which successfully runs under ubuntu, but when I am trying to run it on a red hat PC it is giving a "Segmentation fault (core dumped)" error. I have narrowed down the error to be from ...
10
votes
2answers
10k views
stdlib.h: no such file or directory
I am using various stdlib functions like srand(), etc. I have the line
#include <stdlib.h>
at the top of my code.
I entered this on the command line:
# find / -name stdlib.h
find: ...
3
votes
6answers
342 views
can't run program in RedHat
I wrote some simple program
int main(){
printf("hello word!");
return 0;
}
I compiled it using gcc -o hello hello.c (no errors)
but when I run it in terminal using ...
0
votes
1answer
81 views
multiple childs by parent [closed]
Write a program to create a child using fork system call,. Now child is required to print the id of its parent and Parent is required to print the id of its child?
1
vote
5answers
914 views
analysis of core file
I'm using Linux redhat 3, can someone explain how is that possible that i am able to analyze
with gdb , a core dump generated in Linux redhat 5 ?
not that i complaint :) but i need to be sure this ...
0
votes
3answers
558 views
Need help understanding C program to find that machines IP address
I am not getting this assignment about finding the IP address of the machine. I need help understanding the logic of this code. Our college lab uses proxy server; will this code work on a computer ...
1
vote
1answer
218 views
How to keep one of my application windows on top of the other windows of the same application?
I have a Motif-based notepad-like legacy application.
I would like the modeless "Find/Replace" dialog (which is a Motif TopLevelShell) to always stay on top of the other windows of my application, ...
7
votes
2answers
5k views
Changing default compiler in Linux, using SCons
On my Linux platform, I have several versions of gcc.
Under usr/bin I have:
gcc34
gcc44
gcc
Here are some outputs:
$ gcc --version
gcc (GCC) 4.1.2 20080704 (Red Hat 4.1.2-48)
$ gcc44 --version
...
0
votes
1answer
2k views
Linux redhat kernel-headers
I'm trying to compile a c programming package (thc-ipv6-0.7) on Linux Redhat 2.6.9-42.ELsmp and it's complaining that it can't find "linux/string.h".
From google, I learned that this is part of the ...
0
votes
2answers
269 views
stat systecall in linux returning error
I am using RHEL 4
i am using syscall stat as follows:-
if (stat ("file",&stat_obj)){
if (errno == ENOENT){
printf("File not found");
}else{
printf("Unexpected error occured %d ...
