Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~10.6K People Reached
About Me

IITian venturing thro' the mysteries of technology .

Favorite Tags
Member Avatar for Dave Sinkula

With regard to C++ books, I'll just echo the advice here .The following books are recommended; read them in mostly the order listed." Accelerated C++ " Andrew Koenig & Barbara Moo " The C++ Standard Library " Nicolai Josuttis --- a "must have" " Effective C++ ", " More Effective …

Member Avatar for shahidali6
11
10K
Member Avatar for abhi74k

We have two ways 2 access files . Open and its friends and mmap system call . When to use mmap() and what are its advantages?

Member Avatar for gerard4143
0
75
Member Avatar for abhi74k

I would like to implement a text editor . In the design process i have some doubts . Take a text editor like a notepad . We we will able to move directly to any point in the editor which means that a random access is made possible . I …

Member Avatar for rahul8590
0
76
Member Avatar for abhi74k
Member Avatar for abhi74k
0
146
Member Avatar for abhi74k

Hi frenz , I came across get_user_pages() function . I found that this function is used when the there is no need of kernel buffering (buffer cache ) so the data from the device is directly placed in the userspace . But still i dnt know when and how to …

0
102
Member Avatar for abhi74k

I read that the initialisation of the vptr is done by the default constructor automatically . What happens when u provide implementation for the default constructor . Is the initialisation code added automatically ???

Member Avatar for abhi74k
0
50
Member Avatar for abhi74k

[CODE=c++] class A { int num; public: A() {} A(int _num) : num(_num) {} A operator + (const A & ob) { return (num+ ob.num); } }; int main() { A ob1(1); A ob2(2); A ob3(3); A ob4=ob1+ob2+ob3; } My doubt is in ob1+ob2+ob3 . First ob1+ob2 is evaluated and …

Member Avatar for Aranarth
0
144
Member Avatar for fenerista

İs it possible now to use a system call in module programming ? after I "make" the module below I am getting warnings like that no errors WARNING: "sys_getcwd" [/home....mod/mod01/mod01.ko] undefined! [code] /* * hello-5.c - Demonstrates command line argument passing to a module. */ #include <linux/module.h> #include <linux/moduleparam.h> #include …

Member Avatar for fenerista
0
202