EmbLogic's Blog

Author Archives: Dinesh Sharma

fork call in inter process communication

In multitasking operating systems, processes (running programs) need a way to create new processes, e.g. to run other programs. Fork and its variants are typically the only way of doing so in Unix-like systems. For a process to start the … Continue reading

Posted in Uncategorized | Leave a comment

rcs(revision control system)

The Revision Control System (RCS) is a software implementation of revision controlthat automates the storing, retrieval, logging, identification, and merging of revisions. RCS is useful for text that is revised frequently, for example programs, documentation, procedural graphics, papers, and form letters. RCS is also … Continue reading

Posted in Uncategorized | Leave a comment

link list basics in data c

Linked lists are among the simplest and most common data structures. They can be used to implement several other common abstract data types, including lists (the abstract data type), stacks, queues, associative arrays, and S-expressions, though it is not uncommon … Continue reading

Posted in Uncategorized | Leave a comment