<?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; harsimran.singh</title>
	<atom:link href="https://www.emblogic.com/blog/author/harsimran-singh/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>ISSUES IN MESSAGE QUEUE</title>
		<link>https://www.emblogic.com/blog/09/issues-in-message-queue/</link>
		<comments>https://www.emblogic.com/blog/09/issues-in-message-queue/#comments</comments>
		<pubDate>Fri, 28 Sep 2012 12:38:01 +0000</pubDate>
		<dc:creator><![CDATA[harsimran.singh]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=5400</guid>
		<description><![CDATA[In message queue if i use pointer  for sending payload instead of character array then unpredictable output occurs . Sometimes segmentation fault or sometimes unwanted output occurs at the receiver side  . When i use character array instead of pointer &#8230; <a href="https://www.emblogic.com/blog/09/issues-in-message-queue/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>In message queue if i use pointer  for sending payload instead of character array then unpredictable output occurs . Sometimes segmentation fault or sometimes unwanted output occurs at the receiver side  . When i use character array instead of pointer all works well .</p>
<p>Why is this happening????</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/09/issues-in-message-queue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E-10 IPC project using FIFO</title>
		<link>https://www.emblogic.com/blog/09/e-10-ipc-project-using-fifo/</link>
		<comments>https://www.emblogic.com/blog/09/e-10-ipc-project-using-fifo/#comments</comments>
		<pubDate>Sat, 08 Sep 2012 18:56:59 +0000</pubDate>
		<dc:creator><![CDATA[harsimran.singh]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=5229</guid>
		<description><![CDATA[The same project of IPC which we have done with pipes have to do with FIFO also. All the E-10 members update their status and all the issues regarding project on this thread only . Regards Harsimran singh]]></description>
				<content:encoded><![CDATA[<p>The same project of IPC which we have done with pipes have to do with FIFO also.</p>
<p>All the E-10 members update their status and all the issues regarding project on this thread only .</p>
<p>Regards</p>
<p>Harsimran singh</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/09/e-10-ipc-project-using-fifo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>E-10 MDC PROJECT STATUS</title>
		<link>https://www.emblogic.com/blog/08/e-10-mdc-project-status-2/</link>
		<comments>https://www.emblogic.com/blog/08/e-10-mdc-project-status-2/#comments</comments>
		<pubDate>Tue, 28 Aug 2012 06:40:07 +0000</pubDate>
		<dc:creator><![CDATA[harsimran.singh]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=5090</guid>
		<description><![CDATA[Kindly all the E-10 batch members update their status regarding mdc project here again .]]></description>
				<content:encoded><![CDATA[<p>Kindly all the E-10 batch members update their status regarding mdc project here again .</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/08/e-10-mdc-project-status-2/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>E-10 batch &#8211; client server architecture using IPC (pipes)</title>
		<link>https://www.emblogic.com/blog/08/e-10-batch-client-server-architecture-using-ipc-pipes/</link>
		<comments>https://www.emblogic.com/blog/08/e-10-batch-client-server-architecture-using-ipc-pipes/#comments</comments>
		<pubDate>Thu, 23 Aug 2012 10:20:53 +0000</pubDate>
		<dc:creator><![CDATA[harsimran.singh]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=5001</guid>
		<description><![CDATA[Project description Implement the client server application using pipes by inter-process communication server has to generate clients and clients will communicate with server through pipes . Clients  will send their parameters and server will accept it and depending upon the &#8230; <a href="https://www.emblogic.com/blog/08/e-10-batch-client-server-architecture-using-ipc-pipes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Project description</p>
<p>Implement the client server application using pipes by inter-process communication</p>
<p>server has to generate clients and clients will communicate with server through pipes . Clients  will send their parameters and server will accept it and depending upon the request the server will transfer the request to other process through pipes which perform the corresponding operation and send the result back to server and server will send the result back to corresponding requester.</p>
<p>First implement it with on client and then move forward with multiple clients.</p>
<p>All E-10 batch members will post their status and queries regarding project on this thread only .</p>
<p>Regards,</p>
<p>Harsimran singh</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/08/e-10-batch-client-server-architecture-using-ipc-pipes/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>regarding execle and execvpe functions</title>
		<link>https://www.emblogic.com/blog/08/regarding-execle-and-execvpe-functions/</link>
		<comments>https://www.emblogic.com/blog/08/regarding-execle-and-execvpe-functions/#comments</comments>
		<pubDate>Sun, 19 Aug 2012 17:29:22 +0000</pubDate>
		<dc:creator><![CDATA[harsimran.singh]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=4889</guid>
		<description><![CDATA[how to use execle and execvpe functions and how can i change the value of environment variables using envp[]]]></description>
				<content:encoded><![CDATA[<p>how to use execle and execvpe functions and how can i change the value of environment variables using envp[] </p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/08/regarding-execle-and-execvpe-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E-10 MDC project status</title>
		<link>https://www.emblogic.com/blog/08/e-10-mdc-project-status/</link>
		<comments>https://www.emblogic.com/blog/08/e-10-mdc-project-status/#comments</comments>
		<pubDate>Sun, 19 Aug 2012 13:18:37 +0000</pubDate>
		<dc:creator><![CDATA[harsimran.singh]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=4886</guid>
		<description><![CDATA[compression and decompression done (1 to 7 bit)]]></description>
				<content:encoded><![CDATA[<p>compression and decompression done (1 to 7 bit)</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/08/e-10-mdc-project-status/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>E10 &#8211; MDC project status</title>
		<link>https://www.emblogic.com/blog/08/e10-mdc-project-status-3/</link>
		<comments>https://www.emblogic.com/blog/08/e10-mdc-project-status-3/#comments</comments>
		<pubDate>Thu, 16 Aug 2012 03:31:22 +0000</pubDate>
		<dc:creator><![CDATA[harsimran.singh]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=4757</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/08/e10-mdc-project-status-3/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>E-10 MCD project status</title>
		<link>https://www.emblogic.com/blog/08/e-10-mcd-project-status/</link>
		<comments>https://www.emblogic.com/blog/08/e-10-mcd-project-status/#comments</comments>
		<pubDate>Tue, 14 Aug 2012 19:40:30 +0000</pubDate>
		<dc:creator><![CDATA[harsimran.singh]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=4737</guid>
		<description><![CDATA[general compression (1 to 7 bit) done working on decompression.]]></description>
				<content:encoded><![CDATA[<p>general compression (1 to 7 bit) done</p>
<p>working on decompression.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/08/e-10-mcd-project-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E-10 status of assignment</title>
		<link>https://www.emblogic.com/blog/08/e-10-status-of-assignment/</link>
		<comments>https://www.emblogic.com/blog/08/e-10-status-of-assignment/#comments</comments>
		<pubDate>Sat, 11 Aug 2012 09:27:22 +0000</pubDate>
		<dc:creator><![CDATA[harsimran.singh]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=4644</guid>
		<description><![CDATA[fileio assignment done. structure assignment about to be completed]]></description>
				<content:encoded><![CDATA[<p>fileio assignment done.</p>
<p>structure assignment about to be completed</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/08/e-10-status-of-assignment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SWAP FILE</title>
		<link>https://www.emblogic.com/blog/07/swap-file/</link>
		<comments>https://www.emblogic.com/blog/07/swap-file/#comments</comments>
		<pubDate>Thu, 26 Jul 2012 12:09:08 +0000</pubDate>
		<dc:creator><![CDATA[harsimran.singh]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=4211</guid>
		<description><![CDATA[sometimes when i create .c file then .c.swp file is also generated . For ex i create test.c then hidden file .test.c.swp is generated .Can anyone explain about this swap file ????]]></description>
				<content:encoded><![CDATA[<p>sometimes when i create .c file then .c.swp file is also generated . For ex i create test.c then hidden file .test.c.swp is generated .Can anyone explain about this swap file ????</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/07/swap-file/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>(E-10) assignment-5 (pointer) and cvs done</title>
		<link>https://www.emblogic.com/blog/07/e-10-assignment-5-pointer-and-cvs-done/</link>
		<comments>https://www.emblogic.com/blog/07/e-10-assignment-5-pointer-and-cvs-done/#comments</comments>
		<pubDate>Sun, 22 Jul 2012 11:31:36 +0000</pubDate>
		<dc:creator><![CDATA[harsimran.singh]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3992</guid>
		<description><![CDATA[assignment 5(pointer) till q-14 done but there are some issues in cvs&#8230;&#8230;.]]></description>
				<content:encoded><![CDATA[<p>assignment 5(pointer) till q-14 done but there are some issues in cvs&#8230;&#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/07/e-10-assignment-5-pointer-and-cvs-done/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>can we use break statement in case</title>
		<link>https://www.emblogic.com/blog/07/can-we-use-break-statement-in-case/</link>
		<comments>https://www.emblogic.com/blog/07/can-we-use-break-statement-in-case/#comments</comments>
		<pubDate>Fri, 20 Jul 2012 09:54:24 +0000</pubDate>
		<dc:creator><![CDATA[harsimran.singh]]></dc:creator>
				<category><![CDATA[Shell Scripts]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=4073</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/07/can-we-use-break-statement-in-case/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>issue in shell scripting</title>
		<link>https://www.emblogic.com/blog/07/issue-in-shell-scripting/</link>
		<comments>https://www.emblogic.com/blog/07/issue-in-shell-scripting/#comments</comments>
		<pubDate>Thu, 19 Jul 2012 11:36:32 +0000</pubDate>
		<dc:creator><![CDATA[harsimran.singh]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3887</guid>
		<description><![CDATA[what are the two types of files used by the shells to initialise itself???]]></description>
				<content:encoded><![CDATA[<p>what are the two types of files used by the shells to initialise itself???</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/07/issue-in-shell-scripting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>issue in c program</title>
		<link>https://www.emblogic.com/blog/07/issue-in-c-program/</link>
		<comments>https://www.emblogic.com/blog/07/issue-in-c-program/#comments</comments>
		<pubDate>Thu, 12 Jul 2012 10:02:25 +0000</pubDate>
		<dc:creator><![CDATA[harsimran.singh]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3885</guid>
		<description><![CDATA[//just go thru the simple prog #include #include int main() { char str[5]; int i; for(i=0;i&#60;5;i++) { printf(&#34;\n enter the character :&#34;); scanf(&#34;%c&#34;,str+i); } printf(&#34;\n %s\n &#34;, str); return 0; } predict what is the output if u think output &#8230; <a href="https://www.emblogic.com/blog/07/issue-in-c-program/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>//just go thru the simple prog</p>
<p>#include<br />
#include<br />
int main()<br />
{<br />
char str[5];<br />
int i;<br />
for(i=0;i&lt;5;i++)<br />
{<br />
printf(&quot;\n enter the character :&quot;);<br />
scanf(&quot;%c&quot;,str+i);</p>
<p>}<br />
printf(&quot;\n %s\n &quot;, str);</p>
<p>return 0;<br />
}</p>
<p>predict what is the output</p>
<p>if u think output is<br />
&quot;<br />
enter the character :a<br />
enter the character :b<br />
enter the character :c<br />
enter the character :d<br />
enter the character :e<br />
abcde<br />
&quot;</p>
<p>then u r wrong.. <img src="https://www.emblogic.com/blog/wp-includes/images/smilies/icon_razz.gif" alt=":P" class="wp-smiley" /> </p>
<p>output is<br />
enter the character :a<br />
enter the character :<br />
enter the character :b<br />
enter the character :<br />
enter the character :c</p>
<p>a<br />
b<br />
c<br />
&quot;<br />
this is the original output..</p>
<p>can someone please help and elaborate..</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/07/issue-in-c-program/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>issue in cat and wc command in linux</title>
		<link>https://www.emblogic.com/blog/07/issue-in-cat-and-wc-command-in-linux/</link>
		<comments>https://www.emblogic.com/blog/07/issue-in-cat-and-wc-command-in-linux/#comments</comments>
		<pubDate>Tue, 03 Jul 2012 12:20:45 +0000</pubDate>
		<dc:creator><![CDATA[harsimran.singh]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emblogic.org/blog/?p=3777</guid>
		<description><![CDATA[what is the function of cat and wc command in linux ???? how can we  return from wc and cat command]]></description>
				<content:encoded><![CDATA[<p>what is the function of cat and wc command in linux ???? how can we  return from wc and cat command</p>
]]></content:encoded>
			<wfw:commentRss>https://www.emblogic.com/blog/07/issue-in-cat-and-wc-command-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
