EmbLogic's Blog

Category Archives: Uncategorized

Project 01: Multiple data compression and encryption using iterative techniques

access list: symbolic names: keyword substitution: kv total revisions: 1; selected revisions: 1 description: —————————- revision 1.1 locked by: reena; date: 2016/01/14 09:36:22; author: reena; state: Exp; Initial revision ============================================================================= RCS file: prototype.c,v Working file: prototype.c head: 1.1 branch: locks: … Continue reading

Posted in Uncategorized | Leave a comment

INSERTION_SORT

/* Insertion sorting is a sorting technique in which every element will be placed at their position in such a way that they will be sorted*/ #include int main () { int n,i,j,k,c; int a[30]; printf(“Enter size of array: \n”); … Continue reading

Posted in Uncategorized | Leave a comment

Implementation of Message queue

RCS file: reciever.c,v Working file: reciever.c head: 1.24 branch: locks: strict root: 1.24 access list: symbolic names: keyword substitution: kv total revisions: 24; selected revisions: 24 description: this is a reciever end . it will recieve the data. which will … Continue reading

Posted in Uncategorized | Leave a comment

project_03_Single_Client_Single_Server_Using_Ipc_And_Threads

RCS file: client1.c,v Working file: client1.c head: 1.18 branch: locks: strict root: 1.18 access list: symbolic names: keyword substitution: kv total revisions: 18; selected revisions: 18 description: this is aclient progran which will genrate arequest. rfd and wfd file is … Continue reading

Posted in Uncategorized | Leave a comment

3_Requesting_Client_3_Processing_Client_And_1Server using only pipe

RCS file: header.h,v Working file: header.h head: 1.3 branch: locks: strict root: 1.3 access list: symbolic names: keyword substitution: kv total revisions: 3; selected revisions: 3 description: include stdio.h —————————- revision 1.3 locked by: root; date: 2015/12/23 17:25:37; author: root; … Continue reading

Posted in Uncategorized | Leave a comment

client server using fifo for three processing client and one server and three requesting client

RCS file: adder.c,v Working file: adder.c head: 1.24 branch: locks: strict root: 1.24 access list: symbolic names: keyword substitution: kv total revisions: 24; selected revisions: 24 description: adder.c accepts recieves the request which is send by the server. then calculate … Continue reading

Posted in Uncategorized | Leave a comment

Client server using pipes and fifo for n users

RCS file: adder.c,v Working file: adder.c head: 1.24 branch: locks: strict root: 1.24 access list: symbolic names: keyword substitution: kv total revisions: 24; selected revisions: 24 description: adder.c accepts recieves the request which is send by the server. then calculate … Continue reading

Posted in Uncategorized | Leave a comment

Create A new Release and Branch in RCS

RCS is a Revision Control System. It manages changes in text documents, automating the storage, retrieval, logging, and logging of file revisions.         In the  image there is a RCS -Tree which have  following parts: One Branch : … Continue reading

Posted in Project 1: A Linux Administration based Project, Project Management Tools, Uncategorized | Leave a comment

project 03 implementation of client server at one server and three processing client and three reque sting client

RCS file: header.h,v Working file: header.h head: 1.3 branch: locks: strict root: 1.3 access list: symbolic names: keyword substitution: kv total revisions: 3; selected revisions: 3 description: include stdio.h revision 1.2 date: 2015/12/23 16:28:04; author: root; state: Exp; lines: +1 … Continue reading

Posted in Uncategorized | Leave a comment

project 03 implementation of single client and single server using ipc and threads

RCS file: header.h,v Working file: header.h head: 1.3 branch: locks: strict root: 1.3 access list: symbolic names: keyword substitution: kv total revisions: 3; selected revisions: 3 description: include stdio.hrevision 1.2 date: 2015/12/23 16:28:04; author: root; state: Exp; lines: +1 -0 … Continue reading

Posted in Uncategorized | Leave a comment

3_RequestingClient_And_3_ProcessingClient-Logfile

RCS file: header.h,v Working file: header.h head: 1.1 branch: locks: strict root: 1.1 access list: symbolic names: keyword substitution: kv total revisions: 1; selected revisions: 1 description: All the required header files are included here some important are stdio.h unistd.h … Continue reading

Posted in Uncategorized | Leave a comment

Single Requesting Client and Single Processing Client – Logfile 26th dec 2015

RCS file: header.h,v Working file: header.h head: 1.1 branch: locks: strict         root: 1.1 access list: symbolic names: keyword substitution: kv total revisions: 1;     selected revisions: 1 description: All the required header files are included … Continue reading

Posted in Uncategorized | Leave a comment

project 03 client server using ipc and threads by using pipe () system call at genrate the request byclient and accept by server(Logfile)

RCS file: request.h,v Working file: request.h head: 1.4 branch: locks: strict root: 1.4 access list: symbolic names: keyword substitution: kv total revisions: 4; selected revisions: 4 description: it defines the structure of the request. —————————- revision 1.4 locked by: root; … Continue reading

Posted in Uncategorized | Leave a comment

Client Server using IPC and Threads – Created Pipe using pipe() system call and request written by client and read by the server(Logfile)

RCS file: header.h,v Working file: header.h head: 1.1 branch: locks: strict         root: 1.1 access list: symbolic names: keyword substitution: kv total revisions: 1;     selected revisions: 1 description: All the required header files are included … Continue reading

Posted in Uncategorized | Leave a comment

Memory allocation technique

Hi , Lets discuss about memory allocation techniques we use either in user space program or kernel space program . 1. Malloc :- void *malloc(size_t size); The malloc() function allocates size bytes and returns a pointer to the allocated memory.  … Continue reading

Posted in Uncategorized | Leave a comment