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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 4435 - 4464 of 7585   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4435
All, The slides and minutes of the January BLUG meet are up on the site at http://linux-bangalore.org/meetings/200401/ Thanks to Surjo Das for the minutes of...
Kartik N
kartikn79
Offline Send Email
Feb 1, 2004
12:57 pm
4436
Hi! Everyone I had been using galde for some time. Now i had swithched to Glade2. The problem is i cannot open my old galde projects in glade2. How can i...
vivek mailwla
softwarelice...
Offline Send Email
Feb 1, 2004
12:58 pm
4437
... You can use either : cat /proc/self/statm | cut -d " " f2 for rss or cat /proc/self/stat | cut -d " " -f24 There are 2 different implementations because of...
Karthick Ramnarayanan
a_r_karthic76
Offline Send Email
Feb 2, 2004
3:31 am
4438
... From: "Karthick Ramnarayanan" <karthick_r@...> To: <linux-bangalore-programming@yahoogroups.com> Sent: Monday, February 02, 2004 9:01 AM Subject:...
Arunkumar
akumars@...
Send Email
Feb 2, 2004
5:20 am
4439
... The format in which the sound is digitized depends upon the sound card. Some cards use 8/16-bit Linear PCM encoding while some use 8/16-bit mu-Law...
Abins Jose
abinsjose
Offline Send Email
Feb 2, 2004
10:39 am
4440
I'm new in Linux Driver....I have Interrupt problem.. we always use request_irq(irq,dev_id,handler, , )to regists interrupt to kernel if the int. occur, the...
ªü­õ
jacklee7182002
Offline Send Email
Feb 3, 2004
7:10 am
4441
Hi all, I am looking for training in "Linux kernel internals + device drivers". If any one of you has undergone any such training and know some place then...
Nilanjan Roychowdhury
nilanjan@...
Send Email
Feb 3, 2004
7:32 am
4442
... Hi, "Linux learning centre" in bangalore gives the above mentioned training. www.linuxlearningcentre.com for more info. Mukund Navada [Non-text portions of...
mukund navada
mukvad@...
Send Email
Feb 3, 2004
9:17 am
4443
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
Feb 3, 2004
12:15 pm
4444
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
Feb 3, 2004
12:15 pm
4445
... What is an "AP?" Application program? There are various ways to transfer data from kernel space to user space, which is what you are trying to do if I...
gora_mohanty
Offline Send Email
Feb 3, 2004
12:45 pm
4446
Hi For finding the endianness of a machine one can use the mentioned code to check for it int x =1; if ( (*(char *) &x) == 1) printf(" Little"); else ...
Ashok T M
ashok.tm@...
Send Email
Feb 4, 2004
8:47 am
4447
... [snip] ... search the archives. this has been discussed before. in short: union{char c;int n;}u; -- "Everything should be made as simple as possible, but...
Philip S Tellis
philiptellis
Offline Send Email
Feb 4, 2004
9:26 am
4448
... This could be an option - typedef union{ int x; char b[4]; }T; T t; t.x=1; if(t.b[0] == 1)printf("Little"); else printf("Big");...
C K Kashyap
kashyap@...
Send Email
Feb 4, 2004
1:17 pm
4449
Hi, Are their any open source utilites available to get the parse tree from GCC. -Sanandan...
Sanandan Sharma
sanandan.sharma@...
Send Email
Feb 4, 2004
1:18 pm
4450
... Hi Ashok, here is a piece of code which can compute endianess using an Union. int main(int argc, char **argv) { union { short s; char c[sizeof(short)]; ...
chetanjr
chetan_j_r
Offline Send Email
Feb 4, 2004
1:19 pm
4451
... I think the Union Member names should help clarify! ... #include <stdio.h> union Endian{ int All4Bytes; char FirstByte; }; int main() { union Endian Check;...
Sudeep George
sudeep.george@...
Send Email
Feb 4, 2004
1:19 pm
4452
... what about 16 and 64 bit machines? -- It is so soon that I am done for, I wonder what I was begun for. -- Epitaph, Cheltenham Churchyard...
Philip S Tellis
philiptellis
Offline Send Email
Feb 4, 2004
1:42 pm
4453
... From: "Kingsly John" To: "Arunkumar" Sent: Wednesday, February 04, 2004 4:35 PM Subject: Re: [blug-tech] 2.6 kernel anyone ? ... It seems to me that the...
Arunkumar
akumars@...
Send Email
Feb 4, 2004
3:24 pm
4454
Hi All, The following program quits after servicing the first request (on RedHat 8.0) ... Please tell me if I am missing something. regards, Kashyap use...
C K Kashyap
kashyap@...
Send Email
Feb 4, 2004
3:41 pm
4455
... ^^^^^^^^^^^^ IIRC array sizes in C cannot be the result of expressions, else we could do something like this: char *make_arr(int size) { static char...
Philip S Tellis
philiptellis
Offline Send Email
Feb 4, 2004
5:02 pm
4456
... could ... there is a difference, sizeof evaluates at compile time and not runtime. whereas in your example the value stored in size is known only at...
rishikeshshetty
Online Now Send Email
Feb 4, 2004
6:07 pm
4457
... possible. I had the same thought, and checking it now, it does in fact work, with gcc at least. -- Fascinating, a totally parochial attitude. -- Spock,...
Philip S Tellis
philiptellis
Offline Send Email
Feb 4, 2004
6:24 pm
4458
... Well to explain about the page table translation mechanism, it would take lots of time. You need to be familiar with atleast INTELS MMU architecture. If...
Karthick Ramnarayanan
a_r_karthic76
Offline Send Email
Feb 5, 2004
3:23 am
4459
... From: "Karthick Ramnarayanan" <karthick_r@...> To: <linux-bangalore-programming@yahoogroups.com> Sent: Thursday, February 05, 2004 8:53 AM Subject:...
Arunkumar
akumars@...
Send Email
Feb 5, 2004
4:40 am
4460
... From: "Philip S Tellis" <philip.tellis@...> To: <linux-bangalore-programming@yahoogroups.com> Sent: Wednesday, February 04, 2004 11:51 PM Subject: Re:...
Arunkumar
akumars@...
Send Email
Feb 5, 2004
4:43 am
4461
... architecture. ... I thought you are referring to the management of vm_area_structs, {pgd,pmd,pte}_offset macros w.r.t page translation which are used in...
Karthick Ramnarayanan
a_r_karthic76
Offline Send Email
Feb 5, 2004
4:51 am
4462
... From: "Karthick Ramnarayanan" <karthick_r@...> To: <linux-bangalore-programming@yahoogroups.com> Sent: Thursday, February 05, 2004 10:20 AM ...
Arunkumar
akumars@...
Send Email
Feb 5, 2004
5:03 am
4463
... statm handling in 2.4: In 2.4, the output of statm was obtained by scanning the pte_entries of the per process vm_area_structs. That implies that a page...
Karthick Ramnarayanan
a_r_karthic76
Offline Send Email
Feb 5, 2004
7:16 am
4464
... From: "Karthick Ramnarayanan" <karthick_r@...> To: <linux-bangalore-programming@yahoogroups.com> Sent: Thursday, February 05, 2004 12:46 PM ...
Arunkumar
akumars@...
Send Email
Feb 5, 2004
1:37 pm
Messages 4435 - 4464 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