linux is open source
can you ever see the source code of any of the windows softwares or windows operating system ???
never.
But in case of linux, u can see the code of operating system as well as…
int man ()
{
Int i =1;/initialise int variable by 1/
Char *p;/take char pointer/
p = &i /point var i by using char pointer/
If (*p) /if this condition is true then LSB is stored firs…
Threads are strands of execution of statements.
Each executing process must have one main thread. Threads are also called as light weighted process. Threads are executed on different cores as s…
while writing the character driver i am facing this bug again and again that ketnel is enable to handle null pointer refernce...
can anybody suggest what is the problem???....
noqset=size/(qsetsize*quantumsize);//if it has 126 characters ...size of file/8*8=126/8*8=2 98 //so i need 2 scullqset to write data bcz each scullqset has array of pointers(4byte)pointing …
In computing, a device driver (commonly referred to as simply a driver) is a computer program that operates or controls a particular type of device that is attached to a computer.[1] A driver provide…
I am writing device driver for the first time.
DEVICE is initialized properly and appearing in modules list.
The problem is that when I write bytes in fd which is made from opening node for device dr…
Working of character driver :see diagram & also see some queries of character driver.
The above diagram show how the character driver works in linux , user space to kernel space .
but when we …
total revisions: 1; selected revisions: 1
description:
this is the requesting program in which i am adding two value.
the value sent by the request is read by the server.
-----------------------…
things to be kept in mind while doing "Character Driver"1>Be very patient as you will get different errors with silly solutions.2>As
you are dealing with multiple files like in my c…
Common Errors which most of us will face while doing character drivers1) Multiple definitions of the variable {bcoz of wrong use of extern}2)control reaches end of non-void function{bcoz not returnin…
There are basically three ways of passing the values -----1)Pass by value 2)Pass by reference3)Pass by pointer1)Pass by value----actual parameters r passed to formal parameters to another address def…
void* queue;queue=8;//value will go into queue address but not defined which type of value will go into queue addressint * queue=8;//int type value will go into queue address ,,,typecasted already..…
#includeint display(int*,int);int main(){int*j;int arr[5]={55,22,33,555,65};display(arr,5);//WE HAVE passed base address & no.of times of loop executionreturn 0;}int display(int *m,int x){int i;f…
when we declared to a pointer either it may carry char type values or it may carry int or float type values...after declaration ...it get memory at runtime either using malloc or not using malloc...i…
For ARRAY arr[4] ----value of array arr[1] or *(arr+1) where &arr[1] represents address of perticular position of array...&arr or (arr+0) is base address of array meansVALUES----arr[0]==*arr=…
As threads use same fds so if a parent thread is using fd and at the
same time child thread also want to use fd wat will happen?the child
thread will wait or will get terminated??
Hi,we know that boot loader is used for load the operating system but there are some additional functions of bootldr; what are these,how we can defined these ?
The msgget() function
initializes a new message queue:
int msgget(key_t key, int msgflg)
It can also return the message queue ID
(msqid) of the queue corresponding to the key argument. The …
Post here shortcuts and some commands that can help somebody to program efficiently and quickly.
Vim Editor Command to automatically indent the code with proper tab spaces and to increase readability…
ipc between client and server done.but i have problem to return the value of processing client to the server.can i use pipe or fifo at processing client.
communication between client and server with fifo is completed
and communication b/t processing client and server with fifo &pipe are working.what to do please suggest.
I m having problem in implementing fifo while using three clients it is taking garbage value from third client even though i m using semaphore in that.....???
i got stuck in the problem can we use two named pipe(fifo) between requestingclient and server to take input and similarly two pipe between processing client and server for taking result......
download the package dhcp.
remove the securities i.e. firewall, selinux.
copy syntax from sample file of dhcp.conf into dhcp.conf file.
edit the config file of dhcp like option routers,subnet masks, …