While creating shared libs, is it always must to have -fPIC or fpic? Will there be any harm if this option is ommited. Thanks Suresh V.V Suresh Kumar -- ...
suresh kumar
suresh_vin@...
Oct 1, 2004 1:27 pm
5916
... As the man page of gcc says, the -fPIC option creates 'Position Independent Code' which is a requirement for creating portable shared libraries. Ignoring...
Chandrashekar Babu
lug@...
Oct 1, 2004 3:26 pm
5917
... It will. AFAIK the only difference is in the load time. During the load ( mmap/dlopen ) if you don't use -fpic it will try to resolve all the function...
Thank you for subscribing to the linux-bangalore-programming mailing list. This message is to give you some information about this list and other lists we...
linux-bangalore-progr...
linux-bangalore-progr...
Oct 1, 2004 10:47 pm
5919
Hi Guys, Please any one can tell me about how the flow of networks in the Linux ,I mean the kernel data structures involved when the packet arrives to the eth0...
I wanted to do live lowering of pitch so i wrote a program which gets and sends data from and to /dev/dsp like this: #include"wav.h" //included later in this...
Hi, I'm implementing a new real time scheduling algorithm in the linux kernel. For that I need to change the default fork() sytem call, so that the new system...
Hi, Can any one clear out my doubt, as I am doing firewall program it’s a statefull firewall using netfilters hooks, nf_hook_ops here I am filtering based...
... Hash: SHA1 ... statefull firewall ... address and ... TCP headers at a same time, Yes. See http://www.geocities.com/victorhugo83/micro_firewall.c for an ...
... You can do this. ... This is not valid.. Contrary to what is possibly expected, sb->h and sb->th are iniitalized to the same point. So, to get the...
All, please note: Yahoo Groups is currently demonstrating extreme lag in message clearance, with some messages taking as much as 4-5 hours to appear on the...
Since the traffic on the LB/2004 discussion list is so heavy, we have made available an Announcement Only list for those of you who wish to only receive formal...
Speaker Registration is now open on the Linux Bangalore/2004 website. To register as a speaker for LB/2004, and to propose your talks, please go to ...
Hi, I have an embedded system and am trying to inetd on it. While doing this, I found that getservbyname() call was failing. So I wrote a small program to test...
Om
omanakuttan@...
Oct 6, 2004 6:29 pm
5932
... What is this? why is getservbyname() returning struct hostent* ? ===== Regards, Kiran Kumar Immidi _______________________________ Do you Yahoo!? Declare...
... Do an strace, (if that is available on IXP) that should possibly help you. also check if the /etc/services file that you copied is fine as regards ...
Hi All, I wanted some help in integrating a ARM assembly routine into a Linux device driver written in 'C'. Any pointers in this regard would be helpful. ...
Sydney Alvares
sydney.alvares@...
Oct 7, 2004 7:25 am
5935
Hi all, I have configured gcc for one of processor which is based on SPARC architecture. Facing some abnormal execution of simple test program. While type...
... You may have not started the telnet service of the other board. Enable in services of linux. _______________________________ Do you Yahoo!? Express...
Hi! ... What compiler are you using? You can use GCC inline assembly to integrate your assembly into the C code. Shaks ... K Shakthi Specsoft (Hexaware...
Hi Shakthi! ... - We are using arm-linux toolchain for the compliation. Could you send me the format? Regards, Sydney Alvares...
Sydney Alvares
sydney.alvares@...
Oct 8, 2004 5:54 am
5939
Hi guys I am writing some Perl scripts. I was facing a problem. Fortunately, I have found a workaround. But I am interested to know if there can be a better...
... Well, there are lot of online tutorials for gcc inline assembly. You didn't search in google? :o These are for x86: Inline assembly for x86 on Linux: ...
... is ... check. ... I would expect your processor to generate a Bus Error. You are attempting to pick 16/32 bits from an address that possibly starts on an...
Hi Linux Gurus, Help me out from this, I am working with NAT, how to process the packet that comes from ftp or ALG’s and all the stuff in details, I am...
Hi, How is the HTTP request prepared? Is it with a CRLF on every line or is it just a CRLF on the request line? GET /documentation/apache/ HTTP/1.0<crlf> ...