EmbLogic's Blog

Author Archives: Ashish Gupta

socket using AF_INET

RCS file: server_inet.c,v Working file: server_inet.c head: 1.8 branch: locks: strict root: 1.8 access list: symbolic names: keyword substitution: kv total revisions: 8; selected revisions: 8 description: this the file for srver —————————- revision 1.8 locked by: root; date: 2015/04/11 … Continue reading

Posted in Project 04: FTP based Client Server using Threads and Sockets | Leave a comment

socket using AF_UNIX

head 1.6; access; symbols; locks ashish:1.6; strict; comment @ * @; 1.6 date 2015.03.29.13.01.22; author ashish; state Exp; branches; next 1.5; 1.5 date 2015.03.29.12.57.43; author ashish; state Exp; branches; next 1.4; 1.4 date 2015.03.29.12.56.00; author ashish; state Exp; branches; next … Continue reading

Posted in Project 04: FTP based Client Server using Threads and Sockets | Leave a comment

orphan state

head 1.1; access; symbols; locks ashish:1.1; strict; comment @ * @; 1.1 date 2015.03.24.13.44.13; author ashish; state Exp; branches; next ; desc @programme for orphan condition where the child terminates after the termination of parents, where the child beacme the … Continue reading

Posted in Project 03: Client Server Communication using Linux and IPC | Leave a comment

USE OF atexit()

head 1.3; access; symbols; locks ashish:1.3; strict; comment @ * @; 1.3 date 2015.03.24.12.56.57; author ashish; state Exp; branches; next 1.2; 1.2 date 2015.03.24.12.54.03; author ashish; state Exp; branches; next 1.1; 1.1 date 2015.03.24.12.53.35; author ashish; state Exp; branches; next … Continue reading

Posted in Project 03: Client Server Communication using Linux and IPC | Leave a comment

USING WAIT WHILE DOING MULTIPLE CHILD AND PARENT

head 1.7; access; symbols; locks ashish:1.7; strict; comment @ * @; 1.7 date 2015.03.24.13.22.13; author ashish; state Exp; branches; next 1.6; 1.6 date 2015.03.24.13.20.46; author ashish; state Exp; branches; next 1.5; 1.5 date 2015.03.24.13.16.32; author ashish; state Exp; branches; next … Continue reading

Posted in Project 03: Client Server Communication using Linux and IPC | Leave a comment

SELECTION SORTING

head 1.5; access; symbols; locks ashish:1.5; strict; comment @ * @; 1.5 date 2015.03.23.13.44.10; author ashish; state Exp; branches; next 1.4; 1.4 date 2015.03.23.13.42.03; author ashish; state Exp; branches; next 1.3; 1.3 date 2015.03.23.13.40.25; author ashish; state Exp; branches; next … Continue reading

Posted in Data Structures with C | Leave a comment

Insertion sorting

head 1.8; access; symbols; locks ashish:1.8; strict; comment @ * @; 1.8 date 2015.03.23.13.36.10; author ashish; state Exp; branches; next 1.7; 1.7 date 2015.03.23.13.34.43; author ashish; state Exp; branches; next 1.6; 1.6 date 2015.03.23.13.33.26; author ashish; state Exp; branches; next … Continue reading

Posted in Data Structures with C | Leave a comment

ipc using threads and messagequeue

head 1.9; access; symbols; locks ashish:1.9; strict; comment @ * @; 1.9 date 2015.03.24.12.44.39; author ashish; state Exp; branches; next 1.8; 1.8 date 2015.03.24.12.42.21; author ashish; state Exp; branches; next 1.7; 1.7 date 2015.03.24.12.38.12; author ashish; state Exp; branches; next … Continue reading

Posted in Project 03: Client Server Communication using Linux and IPC | Leave a comment

client-server using MESSAGEQUEUE

head 1.7; access; symbols; locks ashish:1.7; strict; comment @ * @; 1.7 date 2015.03.16.21.25.33; author ashish; state Exp; branches; next 1.6; 1.6 date 2015.03.16.21.22.29; author ashish; state Exp; branches; next 1.5; 1.5 date 2015.03.16.21.17.18; author ashish; state Exp; branches; next … Continue reading

Posted in Project 03: Client Server Communication using Linux and IPC | Leave a comment

CO NDITION FOR QUEUE FULL AND EMPTY.

if we check for the condition that queue is full than we will give this  condition if((front==0&&rear==SIZE-1)||(front==rear+1))//this condition will check the queue and print that queue will be full. and for the empty queue if(front==rear==-1)//this is the condition for checking … Continue reading

Posted in Uncategorized | Leave a comment