EmbLogic's Blog

Author Archives: ruchi.gupta

Signal no.2 SIGINT

RCS file: ./sig_int.c,v Working file: ./sig_int.c head: 1.1 branch: locks: strict root: 1.1 access list: symbolic names: keyword substitution: kv total revisions: 1;    selected revisions: 1 description: signal 2 is called…. —————————- revision 1.1    locked by: root; date: 2014/03/11 04:58:38;  … Continue reading

Posted in Uncategorized | Leave a comment

pipe-string of data is read.

RCS file: ./writer.c,v Working file: ./writer.c head: 1.3 branch: locks: strict root: 1.3 access list: symbolic names: keyword substitution: kv total revisions: 3;    selected revisions: 3 description: pipe is created. child process is generated by using fork(). —————————- revision 1.3    … Continue reading

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

Pipes

RCS file: ./writer.c,v Working file: ./writer.c head: 1.2 branch: locks: strict root: 1.2 access list: symbolic names: keyword substitution: kv total revisions: 2;    selected revisions: 2 description: pipe is created. child process is generated by using fork(). —————————- revision 1.2    … Continue reading

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

Waiting for a process by giving atexit is done.

RCS file: ./wait1.c,v Working file: ./wait1.c head: 1.3 branch: locks: strict root: 1.3 access list: symbolic names: keyword substitution: kv total revisions: 3;    selected revisions: 3 description: waiting for a process is done successfuly. —————————- revision 1.3    locked by: root; … Continue reading

Posted in Uncategorized | Leave a comment

Function is invoked on process exit time using at_exit().

RCS file: ./atexit.c,v Working file: ./atexit.c head: 1.1 branch: locks: strict root: 1.1 access list: symbolic names: keyword substitution: kv total revisions: 1;    selected revisions: 1 description: function is invoked on process exit time using at_exit(). —————————- revision 1.1    locked … Continue reading

Posted in Uncategorized | Leave a comment

Duplicating a process

RCS file: ./message.c,v Working file: ./message.c head: 1.1 branch: locks: strict root: 1.1 access list: symbolic names: keyword substitution: kv total revisions: 1;    selected revisions: 1 description: duplicating of a process. —————————- revision 1.1    locked by: root; date: 2014/03/05 15:40:46;  … Continue reading

Posted in Uncategorized | Leave a comment

Parameters in C functions

Parameters in C functions   A Parameter is the symbolic name for “data” that goes into a function. There are two types of parameters in C: Pass by Value, Pass by Reference. Pass by Value-Pass by Value, means that a … Continue reading

Posted in Data Structures with C | Leave a comment

Structures

Structure is a user defined data type which is a collection of different elements of different data types stored at a continuous memory location. Syntax for structure is: struct name { data-type element; data_type element; ………; ………; }; struct name … Continue reading

Posted in Uncategorized | Leave a comment

Linklist using functions

1 2 RCS file: heaher.h,v 3 Working file: heaher.h 4 head: 1.1 5 branch: 6 locks: strict 7 access list: 8 symbolic names: 9 keyword substitution: kv 10 total revisions: 1; selected revisions: 1 11 description: 12 gave parameters for … Continue reading

Posted in Data Structures with C, Project 2: Multiple Data Compression and Encryption | Leave a comment

Project 01-Multiple Data Compression & encryption using iterative technique.

RCS file: ./header.h,v Working file: ./header.h head: 1.4 branch: locks: strict root: 1.4 access list: symbolic names: keyword substitution: kv total revisions: 4;    selected revisions: 4 description: give prototyp for open_file(). give prototyp for read_file(). —————————- revision 1.4    locked by: … Continue reading

Posted in Project 2: Multiple Data Compression and Encryption | Leave a comment