EmbLogic's Blog

Author Archives: Ziaulhaquea356

Implementation of Register and Unregister in kernel

……………………………HEADER……………………………….. head    1.1; access; symbols; locks; strict; comment    @ * @; 1.1 date    2014.06.25.11.52.30;    author root;    state Exp; branches; next    ; desc @The test of register and unregister on kernels @ ……………………….DEFAULT………………………….. head    1.2; access; symbols; locks; strict; comment    @ … Continue reading

Posted in Character Driver | Leave a comment

Character Device Driver

?The kernel offers several subroutines or functions in user space, which allow the end user application programmer to interact with the hardware. Usually, in UNIX or Linux systems, this dialogue is performed through functions or subroutines in order to read and write files. … Continue reading

Posted in Character Driver | Leave a comment

simple print at kernel

head    1.1; access; symbols; locks root:1.1; strict; comment    @ * @; 1.1 date    2014.06.21.09.20.59;    author root;    state Exp; branches; next    ; desc @print on kernel. @ 1.1 log @Initial revision @

Posted in Character Driver | Leave a comment

create socket programme using client and server

CLIENT:- head    1.1; access; symbols; locks root:1.1; strict; comment    @ * @; 1.1 date    2014.06.17.10.36.05;    author root;    state Exp; branches; next    ; desc @creat reqclient for socket. @ 1.1 log @Initial revision @ text @#include”header.c” int main() { char data1[3]={5,4,’+’}; … Continue reading

Posted in Uncategorized | Leave a comment

FTP based Client Server project using sockets and threads

Sockets are the fundamental technology for programming software to communicate on TCP/IP networks. A socket provides a bidirectional communication endpoint for sending and receiving data with another socket. Socket connections normally run between two different computers on a LAN or across the Internet, … Continue reading

Posted in Uncategorized | Leave a comment

program of thread and checking load of processor

head    1.1; access; symbols; locks root:1.1; strict; comment    @ * @; 1.1 date    2014.06.07.07.30.30;    author root;    state Exp; branches; next    ; desc @simple program of thread. @ 1.1 log @Initial revision @

Posted in Uncategorized | Leave a comment

Thread concept

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, nor does it know the thread that created it. All threads within a process share the … Continue reading

Posted in Uncategorized | Leave a comment

Thread

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 process flow can be scheduled to run … Continue reading

Posted in Uncategorized | Leave a comment

RCS

Name : rcs Product : Fedora 19 Version : 5.9.0 Release : 1.fc19 URL : http://www.gnu.org/software/rcs/ Summary : Revision Control System (RCS) file version management tools Description : The Revision Control System (RCS) is a system for managing multiple versions … Continue reading

Posted in Uncategorized | Leave a comment

enter a string and compress with the help of masterarray

head    1.1; access; symbols; locks; strict; comment    @ * @; 1.1 date    2014.03.23.21.53.35;    author root;    state Exp; branches; next    ; desc @master array with compression @ 1.1 log @Initial revision @ text @#include<stdio.h> #include<string.h> #include<fcntl.h> int main() { int i=0,j,len,maslen=1,fd,ret; … Continue reading

Posted in Uncategorized | Leave a comment

pointer

pointer-> pointer is a variable that store logical address.it is the only way to express som computation and produces compact and efficient cod.it povides a very powerful tool

Posted in Uncategorized | Leave a comment