/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler...../
/*A PROGRAM SHOWING USE OF POINTER OF ARRAY ...PREPAIRED FOR SINGLE ARGUMENT OF THREADS*/#include#include#include#includevoid anu(c…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler...../HELLO I M SERVER*/
/*An implementation of client-server project for 1 client using socket*/#include#include#include#include#include#i…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler.....//*linear search is as easy as can be done by single comperison but it will many no. of iterations of loop*/#includeint main(){ …
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler...../
NOW TO OPEN OPERATION ----/*THERE ARE 3 THINGS REQUIRED======1)DECLARATION OF FUNC-----prototypes.h
2 * …
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler...../
SUPPOSE THIS IS AN APPLICATION WHICH U HAVE TO OPEN USING YOUR OWN CURRENT MADE DRIVER #include 2 #include 3 #include 4 #includ…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler...../
/*In which program i have created 4 diffrent threads doing diffrent work...excuted o ne by one...by waiti//ng each thread by usi…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler...../
/*A semaphore is used to synchronise the threads*/ 2 //In this function semaphore may be acquired by any of thread at any time...s…
//MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler...../*An implimentation of socket using two files..ONE IS client & 2nd IS SERVER...*///SO ENJOY SOCKETS ..FRIENDS.....//THIS IS SERVE…
head 1.8;
access;
symbols;
locks; strict;
comment @ * @;
1.8
date 2014.06.17.05.14.35; author root; state Exp;
branches;
next 1.7;
1.7
date 2014.06.08.08.03.23; author root…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler.....//* DIFFRENCE BETWEEN FILE DESCRIPTOR OF FILE & SOCKET.....*/
#include
#include
#include
#include
#include
#include
#include
int m…
//An attempt to implement the socket...THIS IMPLEMENTATION IS USED AS CLIENT OF THAT SOCKET..//IP ADDRESS IS ADDRESS OF PERTICULAR MACHINE IN INTERNET..MEANS IF WE DONT HAVE INTERNET ACCESS..WE WILL …
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler.....//* I M SERVER *//*A WONDERFUL IMPLEMENTATION USING 3CLIENTS ..2PIPES ONLY...CREATING NEW PROCCESSES........IN FOR LOOP REPLACING PROC…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler.....//*HELLO I M SERVER*/
///PIPE COULD BE EASILY IMPLEMENTED BY CREATING A NEW PROCESS....FIFO COULD BE EASILY IMLEMENTING BY CREATING A …
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler...../*PROGRAM SHOWING HOW TO USE PIPE*/
#include
#include
#include
#include
//#include
int main()
{
int ret,count,i;
char …
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler.....//*A PROGRAM TO CREATE PIPE TO COMMUNICATE BETWEEN TWO PROCESS*/
#include
#include
#include
#include
#include
int main()
{
int…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler.....//*An implementation defining fork call in for loop...creating childs only for one parent..*/#include#include#include#include#includei…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler.....//*A program to check the function of fork in same parent process again & again*/#include#include#include#include#includeint main(…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler.....//*IMPLEMENTATION OF PROGRAM SHOWING FUNCTIONING OF FORK IN FOR LOOP..*/
//LETS DO SOME MANIPULATION IN IT...TRY TO KILL CHILD PROCESS…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler.....//*A program showing writing of data into another file*/#include#include#include//to open() read() write() close() system calls#includ…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler.....//*A file in which a single pipe is created*///sometimes before finishing even parent...the process that is replaced in child is retur…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler.....///THIS IS SERVER PROCESS....FURTHER CHILD WILLBE HYZACKED BY PARENT /*An implementation showing hw one process can be hyjacked by ano…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler...../
/*A simple program showing pointer of array*///I was trying to pass variable without function...unfourtunately i got string in othe…
/*AN APPLICATION ON CLIENT1 SIDE TO COMMUNICATE THE SERVER APPLICATION..LIKE FIREFOX..OR WEB BROWSER*/#include
#include
#include
//#include
#include
#include
#include
#include//sys/sem.h contains all…
Have calculated code length and also found the location of each character of master array. But unable to implement the sprintf(). What is the appropriate method to use sprintf() for encryption???
Client-Server Model
A standard model for distributed applications is
the client-server model. A server is a process that is waiting to be contacted
by a client process so that the server c…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler...../
/* writer */
#include
#include
#include
#include
#include
#include
struct anu
{
unsigned char *payload;
long int ty…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler...../
/NOTE THAT SEMOP IS MISSING....SO SEMAPHORE IS NOT WORKING......STILL PROJECT IS SYNCHRONISED//* server */
#include
#include
#…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler...../
/* writer1 */#include#include#include#include#include#include#include"header.h"//int sem=1;//extern int sem;int main(){ …
*Writer will write untill ..there is reader...& reader will read untill ..there is writer...*for loop tooks small time to enter .....but executes very fast*If i execute writer processes one by on…
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler...../
/* 1ST WRITER */#include#include#include#include#include#includeint main(){ int ret,wfd,count=0; int buff=5; …
*Semaphore is synchronisation technigue*All the writers are trying to write at the same time....using ./writer & ./writer1 & ./writer2 using background process ....so there should be somethin…
/MY ALL PROGRAMS ARE COMPILED ON FEDORA 15 ..WITH 4.6. gcc comppiler/
/* WRITER1*///I M REALLY VERY SORY ...semop is not done ...so semaphore is not working...i have corrected it in further program..…
/* FIRST WRITER*/#include#include#include#include#include#includeint main(){ int ret,wfd,count=0; int buff=5; int a=10; int b=15; ret=mkfifo("anu",777…
*Untill when there is writer .....reader is able to read..*Writer should be there means >>>open () should be called...either WRITER is writing or not*Once process having writer terminates …
//REASONS OF BLOCK ON OPEN
//U r trying to open a fifo...which does not exist...return -ve value of fd...//U r opening fifo on one side at WR_ONLY mode...& fifo is not opened at another side at R…
/*A program of threads which may make ur stack full & hang*/#include#includevoid *(thread)(void * mess){ while(1)printf("%s\n",(char *)mess);//no of threads r going to be increased..…
i tried a c++ program two ways , once by putting a semicolon after the definition of function in the definition of class and another time by removing it. both of these worked well. why is it so?
Midnight Commander is licensed under the terms of the GNU General Public License.
Midnight Commander's features include the ability to view the contents of RPM package files. Midnight Commander …
What is thread and its working.
THREADS, LIKE PROCESSES, ARE A MECHANISM TO ALLOW A PROGRAM to do more than
one thing at a time. As with processes, threads appear to run concurrently; the Linux
k…
/*1st program of c++*///iostream is a directory//cout is object//> are operators acting like connector due to overloading property//overloading means 1 function has diffrent functions#includeusing…
/*A program to show mutex or binary semaphore imlementaion*///Actually MUTEX is a macro whose code is same as instruction of binary semaphore ..//so it will work exactly like binary semaphore#includ…
/*A program to show if structure is not used hw...variables may be used ...which would be in structure*/#includeint main(){ int i; //information about a single book,we have to use this property…
#include#includeint main(){ char *ptr="dav"; //ptr="ANU BALA";/value in pointer could be changed further char name[14];// char name[]="it is raining"; int…
/*A program to presenting entering array of characters or string from scanf & making diffrence b/w scanf & fgets*/#includeint main(){ int name[20]; printf("enter the name in array&…
#include#includeint main(){ float r,a; const float pi=3.14; printf("enter the radious"); scanf("%f",&r); //pi=5;will give error that pi is only readonly a=pi…
/*A program to access perticular memory..& then print wt in this memory have or write in that memory*/#include#include#include#include#includeint main(){ int ret,a=0; int* ptr; int kid; …
/*A program to access perticular memory..& then print wt in this memory have or write in that memory*/#include#include#include#include#includeint main(){ int* ptr; int kid; char i; ki…
/*A program to show data from memory can be accessed even if type of pointer is changed*///write operation is being performed here#include#include#include#include#includestruct anu{ int type; i…
/*A program to find sizeof ptr...in linux os*/#includeint main(){void* ptr;printf("ptr=%p\n",ptr);printf("ptr=%d\n",sizeof(ptr));//o/p=4void* ptr1;printf("ptr1=%p\n",(ch…
/*A module to present hw client-server may be benefit by applying shared memory access*///suppose we have a client....a server.....& process.....we have to take operator & operand by client…
/*A program to write access shared memory & write into it*/#include#include#include#include#include//shm.h is header file used for shared memoryint main(){ int shm_id; int *ptr1; void *p…
#A program that may crash the terminal#salutation="HELLO"echo $salutationx="hi"echo $xsleep 2echo 1 2 3 4 5 6 7 8 9./a & ./a #when same file is executed again& again in ba…
int main()
{
char s[ ]="hello world";
len=strlen(s);
printf("lenght of string is %d",len); /* prints the string lenght */
}
while we take string from terminal inste…
Thread operations include thread creation, termination,
synchronization (joins,blocking), scheduling, data management and
process interaction.
A thread does not maintain a list of created threads,…
/hw to use a fork call to create a new process#include#includeint main(){ int ret; printf("\nEMBLOGIC"); ret=fork();//fork will call twice..1st time parent will call it..returns ch…
#includeint main(){ int k,num=10; k=num>5?100:200;//10>5 is true then 100 will be printed otherwise if cond is false 200 would be printed printf("k=%d",k); return 0;}
/MY PROGRAM ARE COMPILED IN FEDORA15 ..WITH 4.6 gcc compiler.....///A static variable means variable will not be initialised in a loop again & again//A static variable also mean that variable can…
//What will signal do?//Ans.suppose printer is printing ...suddenly page got revolved round in printer ....a signal will go to printer..priter got a little back..then move forward continues according…
/*A program to find greatest number b/w 3 numbers*/#includeint main(){ int a,b,c; printf("enter the value of a,b,c:\n"); scanf("%d%d%d",&a,&b,&c); if(c>…
/*Hw printf works in if condition*/#includeint main(){ int a=12,ch=23,i; float b=2,fresult; printf("a"); fresult=a*b; if(ch==printf("value of a=%d,b=%f",a,b))//a=12…
/*hw memory is provided to a variable*/#includeint main(){ int b=3;//b=3...if 1st int is written it will take 4 byte char i=3.5;//i=3//it will 1st take 4 byte then char will take 1 byte further…
/*diffrence b/w logical not and bitwise not*/#includeint main(){ int x=0; { printf("~x=%d",~x);//this is bitwise not...if x=0...all eight bits will get inverse by using ~x }…
/*A small program to show increment & decrement function operations*/#includeint main(){ int x=10; int y; y=++x;//1st ++ments then value is assigned printf("value of x=%d\n y=%d&…
The POSIX thread libraries are a standards based thread API for C/C++.
It allows one to spawn a new concurrent process flow. It is most effective
on multi-processor or multi-core systems where the …
/*A program to convert lower case letters to upper case letters*/#includeint main(){char i,lw,up;up='A';//up has character A which will be printed as character by %c & ascii value i.e.i…
/*A program to represent system call*/#include#include//#include#includeint main(){system("./ul");//make only a system call & give its argument as alredy compiled file ..using make comm…
/*A program to tell what could be argument of main..?*/#include#include#includeint main(int argc,char* argv[])//int arc bcz it is of int type will have count of number of command line argunets ...eit…
/*A program to show how printf function will work.....what is returns...?*/#includeint global,local;int main(){ { int local=5,count=0; local= printf("\nadd of local=%p &valu…
/*A program to show int main inside int main do what.......?*/#includeint main(){ int i=0; int main() { int i=3;//it will not print as declared error or warning printf("i=…
once we have made a process sleep , what system resources are available to the process during this sleep state?
does such a process occupy the memory on RAM??
Kernel
Definition - What does Kernel mean?
A kernel is the core component of an operating system. Using interprocess communication and system calls, it
acts as a bridge between applications and the d…