Search the web
Sign In
New User? Sign Up
linux-bangalore-programming · LB Programming Discussions
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 5387 - 5416 of 7585   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5387
  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...
Gurpreet Sachdeva
gurpreet40
Offline Send Email
Jul 1, 2004
1:30 pm
5388
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...
Send Email
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...
Kiran Kumar
immidi_kiran
Offline Send Email
Jul 2, 2004
4:54 am
5390
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...
Arjun Jain
arjun_jain
Offline Send Email
Jul 2, 2004
1:40 pm
5391
... i think the break point is supposed to be at *(s->mem) This works with the first character only but most of the time that is all we want...
abhin_udupa
Offline Send Email
Jul 2, 2004
1:47 pm
5392
... 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) { ...
Kiran Kumar
immidi_kiran
Offline Send Email
Jul 2, 2004
3:56 pm
5393
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...
Send Email
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...
Vikram Kumar
vikram_147
Offline Send Email
Jul 7, 2004
8:38 am
5395
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...
sanjay_blore
Offline Send Email
Jul 7, 2004
12:34 pm
5396
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@...
Send Email
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@...
Send Email
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...
Vikram Kumar
vikram_147
Offline Send Email
Jul 9, 2004
7:58 am
5399
... 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@...
Send Email
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...
Vikram Kumar
vikram_147
Offline Send Email
Jul 9, 2004
8:14 am
5401
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@...
Send Email
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@...
Send Email
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...
Kartik N
kartikn79
Offline Send Email
Jul 10, 2004
11:05 am
5404
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@...
Send Email
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!? ...
Mintu
mintu76
Offline Send Email
Jul 12, 2004
4:55 pm
5406
Hi, I am trying to implement HTTPs software upload and download using curl. I have enabled client authentication on apache web server. The Client...
Chidanand
wingscng
Offline Send Email
Jul 13, 2004
6:12 am
5407
... 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@...
Send Email
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@...
Send Email
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 ...
Priti Rathi
p_s_rathi
Offline Send Email
Jul 13, 2004
8:10 am
5410
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 –...
Sreenidhi B.G
sreenidhi_bg
Offline Send Email
Jul 13, 2004
8:11 am
5411
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@...
Send Email
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...
int3
satish@...
Send Email
Jul 13, 2004
9:19 am
5413
hi all, main() { void **blkPtr; char *Buffer; char *ptr; Buffer = (char *) malloc(10000); if( ((unsigned long)Buffer % 4) == 0) printf(" Buffer = %u is...
amith
amith@...
Send Email
Jul 13, 2004
11:41 am
5414
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...
Somenath Mukhopadhyay
som_mukhopad...
Offline Send Email
Jul 13, 2004
11:44 am
5415
... 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@...
Send Email
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...
Om
omanakuttan@...
Send Email
Jul 13, 2004
12:26 pm
Messages 5387 - 5416 of 7585   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help