Hi Guys, I am using mirror function provided by the LWP:Simple Module in Perl... My problem is that the Url I provide to download the page, redirects to...
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...
Jul 1, 2004 9:34 pm
5389
Hi, I am trying to figure out the location at which a structure member is being modified. struct { char *mem;..} s; So, I am trying to figure out where does...
On Thu, 1 Jul 2004 21:54:23 -0700 (PDT), Kiran Kumar ... Sorry, did not understand why do you not want to put a watch on s.mem? ... I think this shoud just...
... I am afraid it is the latter, or I have not been able to put myself well. ... Instead of "s.mem = a", consider a function call "fn(s)" fn(struct *st) { ...
This is a reminder to members of this list about the posting rules: 1. Do not top-post 2. Do not over-quote 3. Do not post HTML messages 4. Do not recycle...
linux-bangalore-progr...
linux-bangalore-progr...
Jul 4, 2004 7:40 pm
5394
Hello Experts, Im trying to write a device driver for "Lapmate USB Pen/Keychain Drive" on Fedora C-I . Im using the skeleton usb driver (From Greg...
Hello all, If anybody throw some light on sourcecode for Server module under embedded linux,it will be greatfull. Pls write me the sourcecode links and...
Hi I am unable to download the 2003 seminar presentations from the blug website. I am getting the following error. Warning: Failed opening...
suresh kumar
suresh_vin@...
Jul 8, 2004 4:50 am
5397
... check out /usr/src/linux-2.4.22-1.2115.nptl/drivers/usb/devices.c might help in some way. ... good effort keep it up. ... you are right in FC 1 its there...
Dhanesh D Pai
dhanesh@...
Jul 8, 2004 6:43 am
5398
... might help in some way. I checked this file but still getting the prod,vendor-id in the hexadecimal form is not specified in this file. ne ways of...
... I guess my question is not understood, all that I need is a warning message on compilation of unsigned int s; if (0 <= s) { ... } this condition is always...
Manje Gowda S G
sakala@...
Jul 9, 2004 8:14 am
5400
Hello Dhanesh, Thx for looking into my prob patiently ! /proc/bus/usb/devices entry does provide product info but its in characted form ! In other usb drivers...
V.V Suresh Kumar Hi I am trying to print the ebp register from with in the program by embedding the following piece of code __asm__ __volatile__ ( "movl...
suresh kumar
suresh_vin@...
Jul 9, 2004 9:44 am
5402
... I forgot to include second cote while posting the question. it is as below __asm__ __volatile__ ( "movl %%ebp,%0":"=r"(variable)); Still I have the...
suresh kumar
suresh_vin@...
Jul 9, 2004 10:06 am
5403
All, The July BLUG meet will be on 23rd July 2004. We need to select a topic for the meet and need speakers for the same. Some topics suggested at last meet...
Hi, Why is that the stack size of linux kernel is 8k in 32 bit arch? Whis is this limitation and is there ne way that I can increase the size of the stack?What...
suresh kumar
suresh_vin@...
Jul 12, 2004 2:47 pm
5405
hi to all, Anyone can help me writing the free sites to know about kernel programming and device driver. Books also. thanks in advance. ... Do you Yahoo!? ...
... Since, kernel cannot offord to give more stack for Each thread. ... There is no way to increase or decrease the kernel stack, this is tested and given that...
int3
satish@...
Jul 13, 2004 7:30 am
5408
... Yes sir, what u said it true. Can u please eloberate a little more. ... Yeah I know that it is 2pages in size but I don't know why that restriction. ... I...
suresh kumar
suresh_vin@...
Jul 13, 2004 8:07 am
5409
... ===== Hi, The following book published by O'rielly publisher is really good book to start. Linux Device Drivers, 2nd Edition ...
I have written a simple printk test driver module, compiled it for 2.6.4 which comes with SuSE 9.1 standard distribution., but on a 2.6.5 or 2.6.3 kernel –...
hi all, a qucik one. main() { printf(" Why is sizeof(void) equal to %d ? \n",sizeof(void)); } i get : Why is sizeof(void) equal to 1? could someone explain ?? ...
amith
amith@...
Jul 13, 2004 9:18 am
5412
... When we call any system calls, it transition will take place from Ring3->Ring0. for example : Int 0x80 is used to switch to kernel. Once transition happens...
Hi all, I am very new to linux world. i have experince in windows vc++ and presently i am working on symbian. i need some guidance to understand the linux...
... From: amith main() { printf(" Why is sizeof(void) equal to %d ? \n",sizeof(void)); } i get : Why is sizeof(void) equal to 1? could someone explain ?? ... I...
senthil_or@...
Jul 13, 2004 12:26 pm
5416
... One kernel thread does not even get full 8kB. the task_struct is kept in the kernel stack of that process. This is quite big structure taking around 1k...