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...
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...
... 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...
... From: "Karthick Ramnarayanan" <karthick_r@...> To: <linux-bangalore-programming@yahoogroups.com> Sent: Monday, February 02, 2004 9:01 AM Subject:...
Arunkumar
akumars@...
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...
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...
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@...
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@...
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...
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...
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...
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@...
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...
... 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@...
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@...
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)]; ...
... 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@...
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...
... 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@...
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@...
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...
... 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...
... 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,...
... 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...
... From: "Karthick Ramnarayanan" <karthick_r@...> To: <linux-bangalore-programming@yahoogroups.com> Sent: Thursday, February 05, 2004 8:53 AM Subject:...
Arunkumar
akumars@...
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@...
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...
... From: "Karthick Ramnarayanan" <karthick_r@...> To: <linux-bangalore-programming@yahoogroups.com> Sent: Thursday, February 05, 2004 10:20 AM ...
Arunkumar
akumars@...
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...