<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>EmbLogic &#187; Aswani</title>
	<atom:link href="https://www.emblogic.com/blog/author/aswani-kumar/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.emblogic.com/blog</link>
	<description>Embedded System and ARM Training</description>
	<lastBuildDate>Tue, 03 Mar 2020 13:00:06 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
	<item>
		<title>Memory management</title>
		<link>https://www.emblogic.com/blog/03/memory-management-2/</link>
		<comments>https://www.emblogic.com/blog/03/memory-management-2/#comments</comments>
		<pubDate>Mon, 24 Mar 2014 06:12:08 +0000</pubDate>
		<dc:creator><![CDATA[Aswani]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.emblogic.com/blog/?p=9291</guid>
		<description><![CDATA[Memory management is the most important parts of the operating system.early days of computing, there has been a need for more memory than exists physically in a system.Virtual memory makes the system appear to have more memory than it actually &#8230; <a href="https://www.emblogic.com/blog/03/memory-management-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Memory management is the most important parts of the operating system.early days of computing, there has been a need for more memory than exists physically in a system.Virtual memory makes the system appear to have more memory than it actually has by sharing it between competing processes as they need it.</p>
<p>The operating system makes the system appear as if it has a larger amount of memory than it actually has. The virtual memory can be many times larger than the physical memory in the system.<br />
Each process in the system has its own virtual address space. These virtual address spaces are completely separate from each other and so a process running one application cannot affect another. Also, the hardware virtual memory mechanisms allow areas of memory to be protected against writing. This protects code and data from being overwritten by rogue applications. </p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/03/memory-management-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>character driver</title>
		<link>https://www.emblogic.com/blog/03/character-driver-27/</link>
		<comments>https://www.emblogic.com/blog/03/character-driver-27/#comments</comments>
		<pubDate>Sun, 23 Mar 2014 13:30:56 +0000</pubDate>
		<dc:creator><![CDATA[Aswani]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.emblogic.com/blog/?p=9289</guid>
		<description><![CDATA[Successfully implemented all synchronization techniques. now implementing ioctl.]]></description>
				<content:encoded><![CDATA[<p>Successfully implemented all synchronization techniques.<br />
now implementing ioctl.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/03/character-driver-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Character Device Driver</title>
		<link>https://www.emblogic.com/blog/03/character-device-driver-8/</link>
		<comments>https://www.emblogic.com/blog/03/character-device-driver-8/#comments</comments>
		<pubDate>Mon, 03 Mar 2014 17:52:18 +0000</pubDate>
		<dc:creator><![CDATA[Aswani]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.emblogic.com/blog/?p=8861</guid>
		<description><![CDATA[Presently i am implementing character device driver,there are short description of my work on driver till now. &#62;1st initialize the character driver by allocating memory on physical memory by registering in the kernel as a kernel module. &#62;And extracting major &#8230; <a href="https://www.emblogic.com/blog/03/character-device-driver-8/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Presently i am implementing character device driver,there are short description of my work on driver till now.<br />
&gt;1st initialize the character driver by allocating memory on physical memory by registering in the kernel as a kernel module.<br />
&gt;And extracting major &amp; minor number,with the help of this number, create NOD between the user sapce and kernel space<br />
&gt;After that performed file oprations:<br />
@ with help of NOD open the file then write in kernel space from user space and read that same again in user space from kernel sapce.then close operation performed.<br />
&gt;Same file operation performed for the more memory by creating multiple SCULLQSET.(Ongoing)<br />
&gt;lseek which is a system call that is used to change the location of the read/write pointer of a file descriptor. The location can be set either in absolute or relative terms.(not working correctly)</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/03/character-device-driver-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Character_driver :read operation</title>
		<link>https://www.emblogic.com/blog/03/character_driver-read-operation/</link>
		<comments>https://www.emblogic.com/blog/03/character_driver-read-operation/#comments</comments>
		<pubDate>Sat, 01 Mar 2014 16:55:54 +0000</pubDate>
		<dc:creator><![CDATA[Aswani]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.emblogic.com/blog/?p=8613</guid>
		<description><![CDATA[I am implemented successfully read operation from kernel space to user space with and without using lseek machanism.]]></description>
				<content:encoded><![CDATA[<p>I am implemented successfully read operation from kernel space to user space with and without using lseek machanism.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/03/character_driver-read-operation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Character_device driver : Implemented upto write opertion.</title>
		<link>https://www.emblogic.com/blog/02/character_device-driver-implemented-upto-write-opertion/</link>
		<comments>https://www.emblogic.com/blog/02/character_device-driver-implemented-upto-write-opertion/#comments</comments>
		<pubDate>Wed, 26 Feb 2014 07:49:11 +0000</pubDate>
		<dc:creator><![CDATA[Aswani]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.emblogic.com/blog/?p=8599</guid>
		<description><![CDATA[I am implemented successfully write operation in multiple quantum in kernel space from user space . Now i am implementing reading operation in user space from kernel space.]]></description>
				<content:encoded><![CDATA[<p>I am implemented successfully write operation in multiple quantum in kernel space from user space .</p>
<p>Now i am implementing reading operation in user space from kernel space.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/02/character_device-driver-implemented-upto-write-opertion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title></title>
		<link>https://www.emblogic.com/blog/06/6577/</link>
		<comments>https://www.emblogic.com/blog/06/6577/#comments</comments>
		<pubDate>Mon, 24 Jun 2013 07:28:40 +0000</pubDate>
		<dc:creator><![CDATA[Aswani]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.emblogic.com/blog/?p=6577</guid>
		<description><![CDATA[finally implemented ftp server&#8230;.. &#160; &#160;]]></description>
				<content:encoded><![CDATA[<p>finally implemented ftp server&#8230;..</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/06/6577/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
