<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Mahol Dot Org</title>
	
	<link>http://www.mahol.org/blog</link>
	<description>Weblog For All Your Need</description>
	<lastBuildDate>Fri, 03 Sep 2010 10:00:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/MaholDotOrg" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="maholdotorg" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">MaholDotOrg</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Fork Implementation In Windows Operating System Vfork Implement in Win32</title>
		<link>http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/</link>
		<comments>http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 10:00:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Unix2Win32_Porting]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[unix to windows porting]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.mahol.org/blog/?p=494</guid>
		<description><![CDATA[With little understanding of fork basics here are few more findings on how to vfork implementation in windows operating system and fork implementation on win32 AT&#38;T Labs Research - Software Tools pick out UWIN: Unix on Windows 95 and NT Machines Major difference in Linux/Unix functionality and WIN32 applications Process control and management: Fork implementation [...]]]></description>
			<content:encoded><![CDATA[<p>With little understanding of <a href="http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/">fork basics </a>here are few more findings on how to vfork implementation in windows operating system and<br />
fork implementation on win32<br />
<a rel="nofollow" href="http://www.research.att.com/software_tools">AT&amp;T Labs Research </a>- Software Tools pick out <a rel="nofollow" href="http://www2.research.att.com/sw/tools/uwin/">UWIN</a>: Unix on Windows 95 and NT Machines<br />
Major difference in Linux/Unix functionality and WIN32 applications<br />
Process control and management:<br />
<strong>Fork implementation </strong><br />
processes can be created using the fork(2) function, in win32 includes a spawn family of functions that combines the functionality of fork/exec for efficiency.<br />
<strong>File descriptor </strong><br />
Open files, pipes, sockets, fifos, and character and block special devices files have file descriptors associated with them. In windows it is called handle.<br />
<strong> signals</strong><br />
Most of the unix/linux signals are absent in windows, like SIGALRM<br />
SIGCHLD<br />
SIGHUP<br />
SIGINT<br />
SIGKILL<br />
SIGPIPE<br />
SIGQUIT<br />
SIGUSR1<br />
SIGUSR2<br />
these can be implemented using replacement methods like SIGALRM	Time-out alarm	can be implemented using SetTimer – WM_TIMER &#8211; CreateWaitableTimer<br />
SIGCHLD	Change in status of child	can be implemented using WaitForSingleObject<br />
<strong>Terminal interface for consoles, sockets, and serial lines</strong></p>
<p><strong>sockets based on WINSOCK:</strong></p>
<p><strong>File control locking:</strong></p>
<p><strong>Memory mapping and shared memory</strong><br />
mmap()</p>
<p><strong>System V IPC</strong><br />
semaphore; Shmget	can be implemented using CreateFileMaping or<br />
OpenFileMapping<br />
shmdt can be implemented using	UnmapViewOfFile<br />
shmat  can be implemented using	MapViewOfFile<br />
Pipe	to _pipe<br />
Close	to _close</p>
<p><strong>Runtime linking of dynamically linked libraries</strong> : like The dlopen(), dlsym() interface<br />
<strong> Error mapping from Windows to UNIX</strong></p>
<p><strong>Symbolic links</strong><br />
Symbolic links to files and directories can be created and can be implemented as Windows shortcuts.</p>
<p>Few Good References for Unix2Win porting</p>
<ol>
<li><a rel="nofollow" href="http://msdn.microsoft.com/en-us/library/ms740096%28VS.85%29.aspx">Porting Socket Applications to Winsock</a></li>
<li><a rel="nofollow" href="http://msdn.microsoft.com/en-us/library/ms684847%28v=VS.85%29.aspx">Process and Thread Functions</a></li>
<li><a rel="nofollow" href="http://tangentsoft.net/wskfaq/articles/bsd-compatibility.html">Winsock Programmer’s FAQ Articles: BSD Sockets Compatibility </a></li>
<li><a rel="nofollow" href="http://gnuwin32.sourceforge.net/packages/libgw32c.htm">LibGW32C for GNU C library for Windows</a></li>
<li><a rel="nofollow" href="http://www.suacommunity.com/dictionary/chdir-entry.php">Unix to Windows Porting Dictionary for HPC</a></li>
<li><a rel="nofollow" href="http://www.zemris.fer.hr/predmeti/os1/misc/Unix2Win.htm">UNIX Application Migration Guide</a></li>
</ol>
number of view: 26
<p><strong>Possibly Related Posts:</strong></p>
<ul>
<li><a href="http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/">CreateProcess And fork() In Windows Differences And Implementation</a></li>
<li><a href="http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/">Solution &#8211; C Requires That a Struct Or Union Has At Least One Member</a></li>
<li><a href="http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/">This USE Statement Is Not Positioned Correctly Within The Scoping Unit</a></li>
<li><a href="http://www.mahol.org/blog/cross-compiling-python-2-6-2-for-arm/">Cross Compiling Python 2.6.2 For ARM Cross Compiling Python for Embedded Linux</a></li>
<li><a href="http://www.mahol.org/blog/ifort-extend-source-option-errors-fortran-fixed-formatting-use-nofree/">Ifort -extend-source Option Errors &#038; Fortran Fixed Formatting Use nofree</a></li>
</ul><br />


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/&amp;title=Fork+Implementation+In+Windows+Operating+System+Vfork+Implement+in+Win32" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/&amp;title=Fork+Implementation+In+Windows+Operating+System+Vfork+Implement+in+Win32" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/&amp;title=Fork+Implementation+In+Windows+Operating+System+Vfork+Implement+in+Win32&amp;desc=With%20little%20understanding%20of%20fork%20basics%20here%20are%20few%20more%20findings%20on%20how%20to%20vfork%20implementation%20in%20windows%20operating%20system%20and%0D%0Afork%20implementation%20on%20win32%0D%0AAT%26amp%3BT%20Labs%20Research%20-%20Software%20Tools%20pick%20out%20UWIN%3A%20Unix%20on%20Windows%2095%20and%20NT%20Machines%0D%0AMajor%20difference%20in%20Linux%2FUnix%20functionality%20an" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/&amp;bm_description=Fork+Implementation+In+Windows+Operating+System+Vfork+Implement+in+Win32&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/&amp;title=Fork+Implementation+In+Windows+Operating+System+Vfork+Implement+in+Win32" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/&amp;title=Fork+Implementation+In+Windows+Operating+System+Vfork+Implement+in+Win32" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/&amp;title=Fork+Implementation+In+Windows+Operating+System+Vfork+Implement+in+Win32" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Fork+Implementation+In+Windows+Operating+System+Vfork+Implement+in+Win32+-+http://tinyurl.com/29xozej&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/&amp;submitHeadline=Fork+Implementation+In+Windows+Operating+System+Vfork+Implement+in+Win32&amp;submitSummary=With%20little%20understanding%20of%20fork%20basics%20here%20are%20few%20more%20findings%20on%20how%20to%20vfork%20implementation%20in%20windows%20operating%20system%20and%0D%0Afork%20implementation%20on%20win32%0D%0AAT%26amp%3BT%20Labs%20Research%20-%20Software%20Tools%20pick%20out%20UWIN%3A%20Unix%20on%20Windows%2095%20and%20NT%20Machines%0D%0AMajor%20difference%20in%20Linux%2FUnix%20functionality%20an&amp;submitCategory=world_news&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CreateProcess And fork() In Windows Differences And Implementation</title>
		<link>http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/</link>
		<comments>http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 10:26:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Unix2Win32_Porting]]></category>
		<category><![CDATA[link errors]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.mahol.org/blog/?p=484</guid>
		<description><![CDATA[Although there is a one-to-one mapping between C UNIX APIs and Win32 APIs for most of the APIs like open to CreateFile, read to ReadFile, write to WriteFile, ioctl to DeviceIOControl, close to CloseFile, and so on. Still, While Porting applications from UNIX to Win32 natively, One of the largest areas of difference is in [...]]]></description>
			<content:encoded><![CDATA[<p>Although there is a one-to-one mapping between C UNIX APIs and Win32 APIs for most of the APIs like <strong>open</strong> to <strong>CreateFile</strong>, <strong>read</strong> to <strong>ReadFile</strong>, <strong>write</strong> to <strong>WriteFile</strong>, <strong>ioctl</strong> to <strong>DeviceIOControl</strong>, <strong>close</strong> to <strong>CloseFile</strong>, and so on. Still, While Porting applications from UNIX to Win32 natively,<br />
One of the largest areas of difference is in the process model. UNIX has <strong>fork</strong>; Win32 does not. Depending on the use of fork and the code base, Win32 has two APIs that can be used: <strong>CreateProcess </strong>and <strong>CreateThread</strong>. A UNIX application that forks multiple copies of itself can be reworked in Win32 to have either multiple processes or a single process with multiple threads read <a title="win32 porting from linux" href="http://msdn.microsoft.com/en-us/library/y23kc048%28VS.80%29.aspx">Porting from UNIX to Win32</a> for further study.</p>
<p>What’s the best way to duplicate <a href="http://www.mkssoftware.com/docs/man3/fork.3.asp">fork()</a> in windows?<br />
<strong> Forking a Win32 Process</strong></p>
<blockquote><p><a href="http://www.cygwin.com/cygwin-ug-net/highlights.html#ov-hi-process">Process Creation in cygwin</a><br />
The fork call in Cygwin is particularly interesting because it does not map well on top of the Win32 API. This makes it very difficult to implement correctly. Currently, the Cygwin fork is a non-copy-on-write implementation similar to what was present in early flavors of UNIX.  The first thing that happens when a parent process forks a child process is that the parent initializes a space in the Cygwin process table for the child. It then creates a suspended child process using the <strong>Win32 CreateProcess call.</strong></p></blockquote>
<p>Read further to know why process creation in <a href="http://www.cygwin.com/cygwin-ug-net/highlights.html">cygwin </a>is slow? <strong>windows fork process; dynamic forking process win32</strong></p>
<p>Here are <strong>Some Differences between CreateProcess() in WIn32 and fork()/exec();</strong><br />
<img src="http://users.telenet.be/bartl/classicperl/fork/c_code.gif" alt="http://users.telenet.be/bartl/classicperl/fork/c_code.gif" align="left" />Unix has two primitives: <a href="http://users.telenet.be/bartl/classicperl/fork/all.html">fork </a>(create new process identical to calling process) and exec (replace details of current process with those loaded from executable file).<br />
Fork also copies open file descriptors, including network sockets (like filehandles) are inherited by children.<br />
Windows has one primitive: <strong>CreateProcess</strong>, which is roughly equivalent to fork-then-exec.</p>
number of view: 36
<p><strong>Possibly Related Posts:</strong></p>
<ul>
<li><a href="http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/">Fork Implementation In Windows Operating System Vfork Implement in Win32</a></li>
<li><a href="http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/">Solution &#8211; C Requires That a Struct Or Union Has At Least One Member</a></li>
<li><a href="http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/">This USE Statement Is Not Positioned Correctly Within The Scoping Unit</a></li>
<li><a href="http://www.mahol.org/blog/pipes-example-code-for-linux-process-synchronizaion/">Pipes Example Code For Linux Process Synchronizaion</a></li>
<li><a href="http://www.mahol.org/blog/ifort-extend-source-option-errors-fortran-fixed-formatting-use-nofree/">Ifort -extend-source Option Errors &#038; Fortran Fixed Formatting Use nofree</a></li>
</ul><br />


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/&amp;title=CreateProcess+And+fork%28%29+In+Windows+Differences+And+Implementation" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/&amp;title=CreateProcess+And+fork%28%29+In+Windows+Differences+And+Implementation" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/&amp;title=CreateProcess+And+fork%28%29+In+Windows+Differences+And+Implementation&amp;desc=Although%20there%20is%20a%20one-to-one%20mapping%20between%20C%20UNIX%20APIs%20and%20Win32%20APIs%20for%20most%20of%20the%20APIs%20like%20open%20to%20CreateFile%2C%20read%20to%20ReadFile%2C%20write%20to%20WriteFile%2C%20ioctl%20to%20DeviceIOControl%2C%20close%20to%20CloseFile%2C%20and%20so%20on.%20Still%2C%20While%20Porting%20applications%20from%20UNIX%20to%20Win32%20natively%2C%0D%0AOne%20of%20the%20largest%20ar" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/&amp;bm_description=CreateProcess+And+fork%28%29+In+Windows+Differences+And+Implementation&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/&amp;title=CreateProcess+And+fork%28%29+In+Windows+Differences+And+Implementation" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/&amp;title=CreateProcess+And+fork%28%29+In+Windows+Differences+And+Implementation" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/&amp;title=CreateProcess+And+fork%28%29+In+Windows+Differences+And+Implementation" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=CreateProcess+And+fork%28%29+In+Windows+Differences+And+Implementation+-+http://tinyurl.com/2waerzf&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/&amp;submitHeadline=CreateProcess+And+fork%28%29+In+Windows+Differences+And+Implementation&amp;submitSummary=Although%20there%20is%20a%20one-to-one%20mapping%20between%20C%20UNIX%20APIs%20and%20Win32%20APIs%20for%20most%20of%20the%20APIs%20like%20open%20to%20CreateFile%2C%20read%20to%20ReadFile%2C%20write%20to%20WriteFile%2C%20ioctl%20to%20DeviceIOControl%2C%20close%20to%20CloseFile%2C%20and%20so%20on.%20Still%2C%20While%20Porting%20applications%20from%20UNIX%20to%20Win32%20natively%2C%0D%0AOne%20of%20the%20largest%20ar&amp;submitCategory=world_news&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Solution – C Requires That a Struct Or Union Has At Least One Member</title>
		<link>http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/</link>
		<comments>http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 13:20:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix2Win32_Porting]]></category>
		<category><![CDATA[link errors]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[unix to windows porting]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.mahol.org/blog/?p=481</guid>
		<description><![CDATA[Windows errors are strange, I have one header file in which one structure is declared, as typedef struct { key_t xyz; &#8212;&#8212; }INFO; For this When I compile using cl.exe I get following list of errors. : error C2016: C requires that a struct or union has at least one member : error C2061: syntax [...]]]></description>
			<content:encoded><![CDATA[<p>Windows errors are strange,<br />
I have one header file in which one structure is declared,<br />
as</p>
<p>typedef struct {<br />
key_t xyz;<br />
&#8212;&#8212;<br />
}INFO;</p>
<p>For this When I compile using cl.exe I get following list of errors.</p>
<pre>: error C2016: C requires that a struct or union has at least one member
: error C2061: syntax error : identifier 'key_t'
: error C2059: syntax error : '}'</pre>
<p>Well I am doing Code migration from Unix system to Windows system so key_t is not known in windows.</p>
<p>It does not make sense for the</p>
<h1><a href="http://msdn.microsoft.com/en-us/library/ms926186.aspx">Compiler Error C2016</a></h1>
<p>which says no closing single quotation mark. Scratching my head and going around with the error.<br />
I do not see any mistake in struct declaration,<br />
<strong>Solution &#8211; C requires that a struct or union has at least one member</strong><br />
Just add the declaration of key_t in same header file before structure declaration.</p>
<p>typedef int key_t;</p>
<p>And compile again you are done.</p>
number of view: 25
<p><strong>Possibly Related Posts:</strong></p>
<ul>
<li><a href="http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/">Fork Implementation In Windows Operating System Vfork Implement in Win32</a></li>
<li><a href="http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/">CreateProcess And fork() In Windows Differences And Implementation</a></li>
<li><a href="http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/">This USE Statement Is Not Positioned Correctly Within The Scoping Unit</a></li>
<li><a href="http://www.mahol.org/blog/ifort-extend-source-option-errors-fortran-fixed-formatting-use-nofree/">Ifort -extend-source Option Errors &#038; Fortran Fixed Formatting Use nofree</a></li>
<li><a href="http://www.mahol.org/blog/how-to-capture-x-protocol-traffic-using-wireshark-on-windows-xp-2/">How To Capture X Protocol Traffic Using Wireshark On Windows XP?</a></li>
</ul><br />


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/&amp;title=Solution+-+C+Requires+That+a+Struct+Or+Union+Has+At+Least+One+Member" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/&amp;title=Solution+-+C+Requires+That+a+Struct+Or+Union+Has+At+Least+One+Member" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/&amp;title=Solution+-+C+Requires+That+a+Struct+Or+Union+Has+At+Least+One+Member&amp;desc=Windows%20errors%20are%20strange%2C%0D%0AI%20have%20one%20header%20file%20in%20which%20one%20structure%20is%20declared%2C%0D%0Aas%0D%0A%0D%0Atypedef%20struct%20%7B%0D%0Akey_t%20xyz%3B%0D%0A------%0D%0A%7DINFO%3B%0D%0A%0D%0AFor%20this%20When%20I%20compile%20using%20cl.exe%20I%20get%20following%20list%20of%20errors.%0D%0A%3A%20error%20C2016%3A%20C%20requires%20that%20a%20struct%20or%20union%20has%20at%20least%20one%20member%0D%0A%3A%20error%20C2061" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/&amp;bm_description=Solution+-+C+Requires+That+a+Struct+Or+Union+Has+At+Least+One+Member&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/&amp;title=Solution+-+C+Requires+That+a+Struct+Or+Union+Has+At+Least+One+Member" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/&amp;title=Solution+-+C+Requires+That+a+Struct+Or+Union+Has+At+Least+One+Member" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/&amp;title=Solution+-+C+Requires+That+a+Struct+Or+Union+Has+At+Least+One+Member" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Solution+-+C+Requires+That+a+Struct+Or+Union+Has+At+Least+One+Member+-+http://tinyurl.com/26ygxmr&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/&amp;submitHeadline=Solution+-+C+Requires+That+a+Struct+Or+Union+Has+At+Least+One+Member&amp;submitSummary=Windows%20errors%20are%20strange%2C%0D%0AI%20have%20one%20header%20file%20in%20which%20one%20structure%20is%20declared%2C%0D%0Aas%0D%0A%0D%0Atypedef%20struct%20%7B%0D%0Akey_t%20xyz%3B%0D%0A------%0D%0A%7DINFO%3B%0D%0A%0D%0AFor%20this%20When%20I%20compile%20using%20cl.exe%20I%20get%20following%20list%20of%20errors.%0D%0A%3A%20error%20C2016%3A%20C%20requires%20that%20a%20struct%20or%20union%20has%20at%20least%20one%20member%0D%0A%3A%20error%20C2061&amp;submitCategory=world_news&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Emulate Fortran Function Btest In C Language</title>
		<link>http://www.mahol.org/blog/emulate-fortran-function-btest-in-c-language/</link>
		<comments>http://www.mahol.org/blog/emulate-fortran-function-btest-in-c-language/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 08:25:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[C Language]]></category>
		<category><![CDATA[C Codes]]></category>
		<category><![CDATA[fortran]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.mahol.org/blog/?p=478</guid>
		<description><![CDATA[Emulate the fortran function btest in C language BTEST function is as part of Bit Functions library in Fortran, description of BTEST function btest( m, i ) Tests bit i in m; returns .true. if the bit is 1, and .false. if it is 0. Here is C language code implementation of BTEST function, which [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Emulate the fortran function btest in C language</strong><br />
BTEST function is as part of Bit Functions library in Fortran,<br />
<strong> description of BTEST function</strong></p>
<p><em>btest( m, i )	Tests bit i in m; returns .true. if the bit is 1, and .false. if it is 0.</em><br />
Here is<strong> C language code implementation of BTEST function,</strong> which checks for bit and returns true ie 1 if bit is SET or else returns 0.</p>
<pre>int btest(int word, int bit)
{
  unsigned int mask;

  /* Create the bit mask */
  mask = 0x0000001 &lt;&lt; bit;

  /* Return TRUE or FALSE*/
  return (( word &amp; mask ) != 0);
}
</pre>
number of view: 13
<p><strong>Possibly Related Posts:</strong></p>
<ul>
</ul><br />


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.mahol.org/blog/emulate-fortran-function-btest-in-c-language/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.mahol.org/blog/emulate-fortran-function-btest-in-c-language/&amp;title=Emulate+Fortran+Function+Btest+In+C+Language" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.mahol.org/blog/emulate-fortran-function-btest-in-c-language/&amp;title=Emulate+Fortran+Function+Btest+In+C+Language" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.mahol.org/blog/emulate-fortran-function-btest-in-c-language/&amp;title=Emulate+Fortran+Function+Btest+In+C+Language&amp;desc=Emulate%20the%20fortran%20function%20btest%20in%20C%20language%0D%0ABTEST%20function%20is%20as%20part%20of%20Bit%20Functions%20library%20in%20Fortran%2C%0D%0A%20description%20of%20BTEST%20function%0D%0A%0D%0Abtest%28%20m%2C%20i%20%29%09Tests%20bit%20i%20in%20m%3B%20returns%20.true.%20if%20the%20bit%20is%201%2C%20and%20.false.%20if%20it%20is%200.%0D%0AHere%20is%20C%20language%20code%20implementation%20of%20BTEST%20function%2C%20which" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.mahol.org/blog/emulate-fortran-function-btest-in-c-language/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.mahol.org/blog/emulate-fortran-function-btest-in-c-language/&amp;bm_description=Emulate+Fortran+Function+Btest+In+C+Language&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.mahol.org/blog/emulate-fortran-function-btest-in-c-language/&amp;title=Emulate+Fortran+Function+Btest+In+C+Language" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.mahol.org/blog/emulate-fortran-function-btest-in-c-language/&amp;title=Emulate+Fortran+Function+Btest+In+C+Language" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.mahol.org/blog/emulate-fortran-function-btest-in-c-language/&amp;title=Emulate+Fortran+Function+Btest+In+C+Language" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.mahol.org/blog/emulate-fortran-function-btest-in-c-language/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Emulate+Fortran+Function+Btest+In+C+Language+-+http://tinyurl.com/34ppzkb&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.mahol.org/blog/emulate-fortran-function-btest-in-c-language/&amp;submitHeadline=Emulate+Fortran+Function+Btest+In+C+Language&amp;submitSummary=Emulate%20the%20fortran%20function%20btest%20in%20C%20language%0D%0ABTEST%20function%20is%20as%20part%20of%20Bit%20Functions%20library%20in%20Fortran%2C%0D%0A%20description%20of%20BTEST%20function%0D%0A%0D%0Abtest%28%20m%2C%20i%20%29%09Tests%20bit%20i%20in%20m%3B%20returns%20.true.%20if%20the%20bit%20is%201%2C%20and%20.false.%20if%20it%20is%200.%0D%0AHere%20is%20C%20language%20code%20implementation%20of%20BTEST%20function%2C%20which&amp;submitCategory=world_news&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.mahol.org/blog/emulate-fortran-function-btest-in-c-language/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>www.techedu.gov.bd Polytechnic Admission Test Result Bangladesh | Merit List Online  www.techedu.gov.bd</title>
		<link>http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/</link>
		<comments>http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 09:44:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Results]]></category>
		<category><![CDATA[Board Results 2010]]></category>
		<category><![CDATA[result online]]></category>
		<category><![CDATA[wb entrance exam results]]></category>

		<guid isPermaLink="false">http://www.mahol.org/blog/?p=476</guid>
		<description><![CDATA[BD polytechnic admission test results online DIRECTORATE OF TECHNICAL EDUCATION DIRECTORATE OF TECHNICAL EDUCATION declared Polytechnic Admission Test Result Bangladesh online at www.techedu.gov.bd Contact Directorate of Technical Education F-4/B Agargaon Administrative Area, Sher-e Bangla Nagar, Dhaka-1207 Ph: 88-02-9110664 www.educationboardresults.gov.bd HSC Result 2010 Bangladesh Dhaka HSC 2010 results - BD polytechnic admission test results now online [...]]]></description>
			<content:encoded><![CDATA[<p><strong>BD polytechnic admission test results</strong> online</p>
<table id="AutoNumber4" border="0" cellspacing="0" cellpadding="0" width="100%" bordercolor="#111111">
<tbody>
<tr>
<td rowspan="2" width="14%" align="center"><img src="http://www.techedu.gov.bd/indeximg/bdlogo.gif" border="0" alt="" width="76" height="81" /></td>
<td width="70%" align="center"><strong> <span style="font-family: Arial; color: #165308; font-size: medium;">DIRECTORATE OF                  TECHNICAL EDUCATION</span></strong></td>
<td rowspan="2" width="16%" align="center"><img src="http://www.techedu.gov.bd/indeximg/bdflags.gif" border="0" alt="" width="80" height="58" /></td>
</tr>
<tr>
<td width="70%" align="center"><img src="http://www.techedu.gov.bd/indeximg/karigori.gif" border="0" alt="" width="253" height="48" /></td>
</tr>
</tbody>
</table>
<p>DIRECTORATE OF TECHNICAL EDUCATION declared Polytechnic Admission Test Result Bangladesh online at www.techedu.gov.bd<br />
Contact<br />
Directorate of Technical Education<br />
F-4/B Agargaon Administrative Area,<br />
<strong>Sher-e Bangla Nagar, Dhaka-1207</strong><br />
Ph: 88-02-9110664<br />
<a href="../www-educationboardresults-gov-bd-hsc-result-2010-bangladesh-dhaka-hsc-2010-results/">www.educationboardresults.gov.bd HSC Result 2010 Bangladesh Dhaka HSC 2010 results -</a><br />
BD polytechnic admission test results now online</p>
<p>watch your admission results and news.<br />
<a href="http://www.techedu.gov.bd/">this link</a></p>
<p><a href="http://123.49.32.83/osas_cake/seat_plans/merit_list">clicking this direct link</a><br />
admission in polytechinc bd online, Admission into Polytechnic Institute, bd polytechnic admission results, bd polytechnic admission results online</p>
number of view: 107
<p><strong>Possibly Related Posts:</strong></p>
<ul>
<li><a href="http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/">Cameroon GCE 2010 Results | GCE Results A LEVEL | GCE Results 2010 | GCE Board www.camgceb.org</a></li>
<li><a href="http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/">www.niper.ac.in NIPER Results 2010 Counseling &#038; Admisson to M.S. Pharm. M.Pharm. M.Tech Pharm. M.B.A. Pharm</a></li>
<li><a href="http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/">Matric SSC 9th and 10th Annual Results 2010 SSC (PART I) ANNUAL Exam SSC (PART II) ANNUAL Results 2010</a></li>
<li><a href="http://www.mahol.org/blog/www-moe-gov-np-slc-results-nepal-slc-result-2066-with-marksheet-tu-result-bbs-part-2-educationsansar-com/">www.moe.gov.np SLC Results Nepal | SLC Result 2066 with marksheet TU result BBS Part 2 educationsansar.com</a></li>
<li><a href="http://www.mahol.org/blog/result-educationboard-gov-bd-h-s-c-dakhil-equivalent-2010-results-online/">result.educationboard.gov.bd H.S.C Dakhil Equivalent 2010 Results Online</a></li>
</ul><br />


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/&amp;title=www.techedu.gov.bd+Polytechnic+Admission+Test+Result+Bangladesh+%7C+Merit+List+Online++www.techedu.gov.bd" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/&amp;title=www.techedu.gov.bd+Polytechnic+Admission+Test+Result+Bangladesh+%7C+Merit+List+Online++www.techedu.gov.bd" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/&amp;title=www.techedu.gov.bd+Polytechnic+Admission+Test+Result+Bangladesh+%7C+Merit+List+Online++www.techedu.gov.bd&amp;desc=BD%20polytechnic%20admission%20test%20results%20online%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%20DIRECTORATE%20OF%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20TECHNICAL%20EDUCATION%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADIRECTORATE%20OF%20TECHNICAL%20EDUCATION%20declared%20Polytechnic%20Admission%20Test%20Result%20Bangladesh%20online%20at%20www.techedu.gov.bd%0D%0AContact%0D%0ADirectorate%20of%20Technical%20Education%0D%0AF-4%2FB%20Agargaon" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/&amp;bm_description=www.techedu.gov.bd+Polytechnic+Admission+Test+Result+Bangladesh+%7C+Merit+List+Online++www.techedu.gov.bd&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/&amp;title=www.techedu.gov.bd+Polytechnic+Admission+Test+Result+Bangladesh+%7C+Merit+List+Online++www.techedu.gov.bd" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/&amp;title=www.techedu.gov.bd+Polytechnic+Admission+Test+Result+Bangladesh+%7C+Merit+List+Online++www.techedu.gov.bd" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/&amp;title=www.techedu.gov.bd+Polytechnic+Admission+Test+Result+Bangladesh+%7C+Merit+List+Online++www.techedu.gov.bd" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=www.techedu.gov.bd+Polytechnic+Admission+Test+Result+Bangladesh+%7C+Merit+List+Onl%5B..%5D+-+http://tinyurl.com/2c5dnrw&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/&amp;submitHeadline=www.techedu.gov.bd+Polytechnic+Admission+Test+Result+Bangladesh+%7C+Merit+List+Online++www.techedu.gov.bd&amp;submitSummary=BD%20polytechnic%20admission%20test%20results%20online%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%20DIRECTORATE%20OF%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20TECHNICAL%20EDUCATION%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A%0D%0ADIRECTORATE%20OF%20TECHNICAL%20EDUCATION%20declared%20Polytechnic%20Admission%20Test%20Result%20Bangladesh%20online%20at%20www.techedu.gov.bd%0D%0AContact%0D%0ADirectorate%20of%20Technical%20Education%0D%0AF-4%2FB%20Agargaon&amp;submitCategory=world_news&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>This USE Statement Is Not Positioned Correctly Within The Scoping Unit</title>
		<link>http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/</link>
		<comments>http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/#comments</comments>
		<pubDate>Wed, 28 Jul 2010 06:54:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Unix2Win32_Porting]]></category>
		<category><![CDATA[fortran]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[link errors]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.mahol.org/blog/?p=471</guid>
		<description><![CDATA[Error: This USE statement is not positioned correctly within the scoping unit. I keep getting this error, and I have no idea why. The program is in a very standard structure: I did check help / man page of IFORT but no luck.. This thread at intel.com also discuss about the same problem. the answer [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Error: This USE statement is not positioned correctly within the scoping unit.</strong><br />
I keep getting this error, and I have no idea why. The program is in a very standard structure:<br />
I did check<a href="http://www.mahol.org/blog/ifort-extend-source-option-errors-fortran-fixed-formatting-use-nofree/"> help / man page of IFORT </a>but no luck..<br />
<img src="http://www.intel.com/sites/sitewide/HAT/40recode/pix/main-logo.png" alt="http://www.intel.com/sites/sitewide/HAT/40recode/pix/main-logo.png" align="left" /><a href="http://software.intel.com/en-us/forums/showthread.php?t=54933"> This thread at intel.com</a> also discuss about the same problem.<br />
the answer at this thread is</p>
<blockquote><p>&#8220;USE YourModule&#8221; must preceed local variable declarations. Your include file (at least one of your include files) is declaring at least one variable.</p>
<p>Place your USE to preceed the include statements.</p></blockquote>
<p>But that did not work completely,</p>
<p>and other half part of answer is<br />
Add an only clause to select only the GETENV routine:<br />
use IFPORT, only: GETENV<br />
This will hide any other names in IFPORT;<br />
This post will talk about <a href="http://www.mahol.org/blog/unresolved-external-symbol-_getenv_-use-ifport-link-error-for-application-porting-from-unix-to-win32/">why added USE IFPORT</a><br />
This worked fine..<br />
share your experience as well..</p>
<p>USE also must precede any IMPLICIT statements.  Best is to have them come directly after the SUBROUTINE or FUNCTION statement.</p>
<p>you can have USE and IMPORT statements in the same interface body, but the forbidden &#8216;mixing&#8217; I was referring to was that of placing any IMPORT statement before any USE statement .. <a href="http://coding.derkeiler.com/Archive/Fortran/comp.lang.fortran/2010-07/msg00661.html">source </a></p>
number of view: 11
<p><strong>Possibly Related Posts:</strong></p>
<ul>
<li><a href="http://www.mahol.org/blog/fork-implementation-in-windows-operating-system-vfork-implement-in-win32/">Fork Implementation In Windows Operating System Vfork Implement in Win32</a></li>
<li><a href="http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/">CreateProcess And fork() In Windows Differences And Implementation</a></li>
<li><a href="http://www.mahol.org/blog/solution-c-requires-that-a-struct-or-union-has-at-least-one-member/">Solution &#8211; C Requires That a Struct Or Union Has At Least One Member</a></li>
<li><a href="http://www.mahol.org/blog/ifort-extend-source-option-errors-fortran-fixed-formatting-use-nofree/">Ifort -extend-source Option Errors &#038; Fortran Fixed Formatting Use nofree</a></li>
<li><a href="http://www.mahol.org/blog/how-to-capture-x-protocol-traffic-using-wireshark-on-windows-xp-2/">How To Capture X Protocol Traffic Using Wireshark On Windows XP?</a></li>
</ul><br />


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/&amp;title=This+USE+Statement+Is+Not+Positioned+Correctly+Within+The+Scoping+Unit" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/&amp;title=This+USE+Statement+Is+Not+Positioned+Correctly+Within+The+Scoping+Unit" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/&amp;title=This+USE+Statement+Is+Not+Positioned+Correctly+Within+The+Scoping+Unit&amp;desc=Error%3A%20This%20USE%20statement%20is%20not%20positioned%20correctly%20within%20the%20scoping%20unit.%0D%0AI%20keep%20getting%20this%20error%2C%20and%20I%20have%20no%20idea%20why.%20The%20program%20is%20in%20a%20very%20standard%20structure%3A%0D%0AI%20did%20check%20help%20%2F%20man%20page%20of%20IFORT%20but%20no%20luck..%0D%0A%20This%20thread%20at%20intel.com%20also%20discuss%20about%20the%20same%20problem.%0D%0Athe%20ans" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/&amp;bm_description=This+USE+Statement+Is+Not+Positioned+Correctly+Within+The+Scoping+Unit&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/&amp;title=This+USE+Statement+Is+Not+Positioned+Correctly+Within+The+Scoping+Unit" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/&amp;title=This+USE+Statement+Is+Not+Positioned+Correctly+Within+The+Scoping+Unit" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/&amp;title=This+USE+Statement+Is+Not+Positioned+Correctly+Within+The+Scoping+Unit" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=This+USE+Statement+Is+Not+Positioned+Correctly+Within+The+Scoping+Unit+-+http://tinyurl.com/2bu29m6&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/&amp;submitHeadline=This+USE+Statement+Is+Not+Positioned+Correctly+Within+The+Scoping+Unit&amp;submitSummary=Error%3A%20This%20USE%20statement%20is%20not%20positioned%20correctly%20within%20the%20scoping%20unit.%0D%0AI%20keep%20getting%20this%20error%2C%20and%20I%20have%20no%20idea%20why.%20The%20program%20is%20in%20a%20very%20standard%20structure%3A%0D%0AI%20did%20check%20help%20%2F%20man%20page%20of%20IFORT%20but%20no%20luck..%0D%0A%20This%20thread%20at%20intel.com%20also%20discuss%20about%20the%20same%20problem.%0D%0Athe%20ans&amp;submitCategory=world_news&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.mahol.org/blog/this-use-statement-is-not-positioned-correctly-within-the-scoping-unit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pipes Example Code For Linux Process Synchronizaion</title>
		<link>http://www.mahol.org/blog/pipes-example-code-for-linux-process-synchronizaion/</link>
		<comments>http://www.mahol.org/blog/pipes-example-code-for-linux-process-synchronizaion/#comments</comments>
		<pubDate>Fri, 23 Jul 2010 09:46:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[examples]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://www.mahol.org/blog/?p=469</guid>
		<description><![CDATA[Pipe is a buffer of fixed size written by one related process and read by another related process. where related process means, parent and child process. Usage : int pipe(int fildes[2]) creates a pipe and returns two file descriptors, fildes[0] and fildes[1] for reading and writing. mutual exclusion is handled by operating system, ie only [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Pipe </strong>is a buffer of fixed size written by one related process and read by another related process. where related process means, parent and child process.<br />
Usage : int pipe(int fildes[2])<br />
<strong>creates a pipe </strong>and returns two file descriptors, fildes[0] and fildes[1] for reading and writing.<br />
mutual exclusion is handled by operating system, ie only one process at a time can read or write to pipe. If one process is reading or writing on pipe other process will wait.<br />
processes sharing the pipe must have same parent in common and are unaware of each other&#8217;s existence</p>
<p><strong>Pipe example</strong></p>
<div>
<div>main()</div>
<div>{</div>
<div>int  n;</div>
<div>int   pipefd[2];</div>
<div>char buff[100];</div>
<div>if (pipe(pipefd) &lt; 0)       // create a pipe</div>
<div>perror(&#8220;pipe error&#8221;);</div>
<div>printf(“read fd = %d, writefd = %d\n”, pipefd[0], pipefd[1]);</div>
<div>if (write(pipefd[1], “hello world\n”, 12) !=12) // write to pipe</div>
<div>perror(&#8220;write error&#8221;);</div>
<div>if ((n=read(pipefd[0], buff, sizeof(buff))) &lt;=0) //read from pipe</div>
<div>perror(&#8220;read error&#8221;);</div>
<div>write(1, buff, n );   /* write to stdout */</div>
<div>close(pipefd[0]);</div>
<div>close(pipefd[1]);</div>
<div>exit(0);</div>
<div>}</div>
<div><strong>Result: </strong></div>
<div>read fd = 3, writefd = 4</div>
<div>hello world</div>
<div>default FD for any process under Linux is from 0, 1 and 2 ie for STDIN, STDOUT and STRERR, whatever new descriptors are created will be assigned FD greater than 2. So read FD for pipe is 3 and write FD for Pipe is 4.</div>
<div></div>
</div>
number of view: 16
<p><strong>Possibly Related Posts:</strong></p>
<ul>
<li><a href="http://www.mahol.org/blog/createprocess-and-fork-in-windows-differences-and-implementation/">CreateProcess And fork() In Windows Differences And Implementation</a></li>
</ul><br />


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.mahol.org/blog/pipes-example-code-for-linux-process-synchronizaion/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.mahol.org/blog/pipes-example-code-for-linux-process-synchronizaion/&amp;title=Pipes+Example+Code+For+Linux+Process+Synchronizaion+" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.mahol.org/blog/pipes-example-code-for-linux-process-synchronizaion/&amp;title=Pipes+Example+Code+For+Linux+Process+Synchronizaion+" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.mahol.org/blog/pipes-example-code-for-linux-process-synchronizaion/&amp;title=Pipes+Example+Code+For+Linux+Process+Synchronizaion+&amp;desc=Pipe%20is%20a%20buffer%20of%20fixed%20size%20written%20by%20one%20related%20process%20and%20read%20by%20another%20related%20process.%20where%20related%20process%20means%2C%20parent%20and%20child%20process.%0D%0AUsage%20%3A%20int%20pipe%28int%20fildes%5B2%5D%29%0D%0Acreates%20a%20pipe%20and%20returns%20two%20file%20descriptors%2C%20fildes%5B0%5D%20and%20fildes%5B1%5D%20for%20reading%20and%20writing.%0D%0Amutual%20exclus" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.mahol.org/blog/pipes-example-code-for-linux-process-synchronizaion/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.mahol.org/blog/pipes-example-code-for-linux-process-synchronizaion/&amp;bm_description=Pipes+Example+Code+For+Linux+Process+Synchronizaion+&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.mahol.org/blog/pipes-example-code-for-linux-process-synchronizaion/&amp;title=Pipes+Example+Code+For+Linux+Process+Synchronizaion+" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.mahol.org/blog/pipes-example-code-for-linux-process-synchronizaion/&amp;title=Pipes+Example+Code+For+Linux+Process+Synchronizaion+" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.mahol.org/blog/pipes-example-code-for-linux-process-synchronizaion/&amp;title=Pipes+Example+Code+For+Linux+Process+Synchronizaion+" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.mahol.org/blog/pipes-example-code-for-linux-process-synchronizaion/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Pipes+Example+Code+For+Linux+Process+Synchronizaion++-+http://tinyurl.com/23f9ku3&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.mahol.org/blog/pipes-example-code-for-linux-process-synchronizaion/&amp;submitHeadline=Pipes+Example+Code+For+Linux+Process+Synchronizaion+&amp;submitSummary=Pipe%20is%20a%20buffer%20of%20fixed%20size%20written%20by%20one%20related%20process%20and%20read%20by%20another%20related%20process.%20where%20related%20process%20means%2C%20parent%20and%20child%20process.%0D%0AUsage%20%3A%20int%20pipe%28int%20fildes%5B2%5D%29%0D%0Acreates%20a%20pipe%20and%20returns%20two%20file%20descriptors%2C%20fildes%5B0%5D%20and%20fildes%5B1%5D%20for%20reading%20and%20writing.%0D%0Amutual%20exclus&amp;submitCategory=world_news&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.mahol.org/blog/pipes-example-code-for-linux-process-synchronizaion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item><title>The Linux kernel:parent and child synchronization using signal [del.icio.us]</title><link>http://www.win.tue.nl/~aeb/linux/lk/lk-5.html</link><category>signals, linux programming signals</category><dc:creator>bhagwat</dc:creator><pubDate>Thu, 22 Jul 2010 05:06:39 PDT</pubDate><guid isPermaLink="true">http://www.win.tue.nl/~aeb/linux/lk/lk-5.html</guid><description>Sending signals and receiving.. The Linux kernel&lt;br /&gt;
Andries Brouwer http://www.win.tue.nl/~aeb/linux/lk/lk.html#toc10</description><taxo:topics xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/">
      <rdf:Bag xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/signals%2C" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/linux" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/programming" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/signals" />
      </rdf:Bag>
    </taxo:topics></item><item>
		<title>Cameroon GCE 2010 Results | GCE Results A LEVEL | GCE Results 2010 | GCE Board www.camgceb.org</title>
		<link>http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/</link>
		<comments>http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/#comments</comments>
		<pubDate>Thu, 22 Jul 2010 07:28:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Results]]></category>
		<category><![CDATA[Board Results 2010]]></category>
		<category><![CDATA[GCE advanced level results]]></category>
		<category><![CDATA[online 2010]]></category>
		<category><![CDATA[result online]]></category>

		<guid isPermaLink="false">http://www.mahol.org/blog/?p=467</guid>
		<description><![CDATA[The Cameroon GCE 2010 board result Updates from The Cameroon General Certificate of Education Board . Update from Cameroon GCE Board results that this year’s General Certificate of Education results will be out by mid August 2010. written part of the 2010 GCE Examination, Q. When will the results for cameroon GCE 2010 be released? [...]]]></description>
			<content:encoded><![CDATA[<p>The <strong>Cameroon GCE 2010 board result </strong>Updates from The Cameroon General Certificate of Education Board .<br />
Update from <strong>Cameroon GCE Board results </strong>that this year’s General Certificate of Education results will be out by mid August 2010.<br />
written part of the <strong>2010 GCE Examination,</strong></p>
<p>Q. When will the results for <strong>cameroon GCE 2010</strong> be released?<br />
A. The site is not mentioned anywhere, may be announced at<br />
<a href="http://www.bolmamabol.com/web/the-cameroon-gce-board-result-updates-at-wwwcamgceborg/">http://www.camgceb.org/</a><br />
results for the 2010 g c e in cameroon, cameroon gce 2010 results,<br />
cameroon gce 2009 results,cameroon gcse results day 2010,<br />
GCE Results To Be Released Before Mid August.</p>
<h3><a onmousedown="return clk(this.href,'','','','7','','0CC4QFjAG')" href="http://www.bolmamabol.com/results/gce-a-level-exam-results-day-gcse-exam-results-2010-gce-aas/"><em>GCE</em> A LEVEL Exam <em>Results</em> Day | GCSE Exam <em>Results 2010 GCE</em> A/AS</a></h3>
<p>cameroon gce board • gce board • cameroon news headlines • gce board cameroon • cameroon gce results 2010<br />
cameroon GCE2009 Examinations results.list of 2010 Cameroon GCE result. EXAM RESULTS: JUNE 2010 CAMEROON GCE RESULTS .<br />
cameron gce board result2010. Cameroon gce 2010 results. cameroon certificate of education broad.<br />
CAMEROON G C E results list 2010<br />
cameroon post or GCE advanced level results.</p>
number of view: 114
<p><strong>Possibly Related Posts:</strong></p>
<ul>
<li><a href="http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/">www.techedu.gov.bd Polytechnic Admission Test Result Bangladesh | Merit List Online  www.techedu.gov.bd</a></li>
<li><a href="http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/">www.niper.ac.in NIPER Results 2010 Counseling &#038; Admisson to M.S. Pharm. M.Pharm. M.Tech Pharm. M.B.A. Pharm</a></li>
<li><a href="http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/">Matric SSC 9th and 10th Annual Results 2010 SSC (PART I) ANNUAL Exam SSC (PART II) ANNUAL Results 2010</a></li>
<li><a href="http://www.mahol.org/blog/www-moe-gov-np-slc-results-nepal-slc-result-2066-with-marksheet-tu-result-bbs-part-2-educationsansar-com/">www.moe.gov.np SLC Results Nepal | SLC Result 2066 with marksheet TU result BBS Part 2 educationsansar.com</a></li>
<li><a href="http://www.mahol.org/blog/result-educationboard-gov-bd-h-s-c-dakhil-equivalent-2010-results-online/">result.educationboard.gov.bd H.S.C Dakhil Equivalent 2010 Results Online</a></li>
</ul><br />


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/&amp;title=Cameroon+GCE+2010+Results+%7C+GCE+Results+A+LEVEL+%7C+GCE+Results+2010+%7C+GCE+Board+www.camgceb.org" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/&amp;title=Cameroon+GCE+2010+Results+%7C+GCE+Results+A+LEVEL+%7C+GCE+Results+2010+%7C+GCE+Board+www.camgceb.org" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/&amp;title=Cameroon+GCE+2010+Results+%7C+GCE+Results+A+LEVEL+%7C+GCE+Results+2010+%7C+GCE+Board+www.camgceb.org&amp;desc=The%20Cameroon%20GCE%202010%20board%20result%20Updates%20from%20The%20Cameroon%20General%20Certificate%20of%20Education%20Board%20.%0D%0AUpdate%20from%20Cameroon%20GCE%20Board%20results%20that%20this%20year%E2%80%99s%20General%20Certificate%20of%20Education%20results%20will%20be%20out%20by%20mid%20August%202010.%0D%0Awritten%20part%20of%20the%202010%20GCE%20Examination%2C%0D%0A%0D%0AQ.%20When%20will%20the%20res" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/&amp;bm_description=Cameroon+GCE+2010+Results+%7C+GCE+Results+A+LEVEL+%7C+GCE+Results+2010+%7C+GCE+Board+www.camgceb.org&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/&amp;title=Cameroon+GCE+2010+Results+%7C+GCE+Results+A+LEVEL+%7C+GCE+Results+2010+%7C+GCE+Board+www.camgceb.org" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/&amp;title=Cameroon+GCE+2010+Results+%7C+GCE+Results+A+LEVEL+%7C+GCE+Results+2010+%7C+GCE+Board+www.camgceb.org" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/&amp;title=Cameroon+GCE+2010+Results+%7C+GCE+Results+A+LEVEL+%7C+GCE+Results+2010+%7C+GCE+Board+www.camgceb.org" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Cameroon+GCE+2010+Results+%7C+GCE+Results+A+LEVEL+%7C+GCE+Results+2010+%7C+GCE+Board+w%5B..%5D+-+http://tinyurl.com/2ftmxdy&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/&amp;submitHeadline=Cameroon+GCE+2010+Results+%7C+GCE+Results+A+LEVEL+%7C+GCE+Results+2010+%7C+GCE+Board+www.camgceb.org&amp;submitSummary=The%20Cameroon%20GCE%202010%20board%20result%20Updates%20from%20The%20Cameroon%20General%20Certificate%20of%20Education%20Board%20.%0D%0AUpdate%20from%20Cameroon%20GCE%20Board%20results%20that%20this%20year%E2%80%99s%20General%20Certificate%20of%20Education%20results%20will%20be%20out%20by%20mid%20August%202010.%0D%0Awritten%20part%20of%20the%202010%20GCE%20Examination%2C%0D%0A%0D%0AQ.%20When%20will%20the%20res&amp;submitCategory=world_news&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>www.niper.ac.in NIPER Results 2010 Counseling &amp; Admisson to M.S. Pharm. M.Pharm. M.Tech Pharm. M.B.A. Pharm</title>
		<link>http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/</link>
		<comments>http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 06:45:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Results]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[entrance exam]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[maharashtra]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[result online]]></category>

		<guid isPermaLink="false">http://www.mahol.org/blog/?p=465</guid>
		<description><![CDATA[NIPER JEE Results &#124; Admisson to M.S. Pharm. M.Pharm. M.Tech Pharm. M.B.A. Pharm, Here is update on NIPER JOINT ENTRANCE EXAMINATION 2010 (NIPER-JEE 2010) NIPER JEE Results 2010 will be declared today ie Declaration of result of NIPER JEE-2010 is 16th July 2010. NIPER entrance Results 2010 &#124; NIPER, check out NIPER counselling and admission [...]]]></description>
			<content:encoded><![CDATA[<p>NIPER JEE Results | Admisson to M.S. Pharm. M.Pharm. M.Tech Pharm. M.B.A. Pharm,</p>
<p><img src="http://www.niper.ac.in/niper.jpg" alt="http://www.niper.ac.in/niper.jpg" width="365" height="48" /><br />
Here is update on <strong>NIPER JOINT ENTRANCE EXAMINATION 2010 (NIPER-JEE 2010)</strong><br />
<strong>NIPER JEE Results 2010</strong> will be declared today ie<br />
Declaration of result of <strong>NIPER JEE-2010</strong> is 16th July 2010.<br />
<strong>NIPER entrance Results 2010</strong> | NIPER,<br />
check out <a href="http://bolmamabol.blogspot.com/2010/07/niper-jee-2010-results-counseling.html">NIPER counselling</a> and admission details online.<br />
NIPER Joint Entrance Examination – 2010 (NIPER-JEE-2010) For <strong>Admisson to M.S. (Pharm.); M.Pharm.; M.Tech. (Pharm.); M.B.A. (Pharm.) </strong></p>
<p><a href="http://www.niper.ac.in/niperjee2010.html">http://www.niper.ac.in/niperjee2010.html</a><br />
NIPER JEE Results, NIPER JEE Results 2010, NIPER JEE Results online, NIPER List of Selected Candidates, NIPER MBA admission Results, NIPER MBA Entrance</p>
<p>First <a href="http://bolmamabol.blogspot.com/2010/07/niper-jee-2010-results-counseling.html">NIPER counselling</a> will begin from 23rd July 2010,</p>
<p><strong>NIPER JEE Results, NIPER JEE Results 2010, NIPER JEE Results online, NIPER List of Selected Candidates, NIPER MBA admission Results, NIPER MBA Entrance Results, NIPER MErit List, NIPER MPharm Results, NIPER MS Entrance results, NIPER MTech Results, NIPER Selected Candidates List, www.niper.ac.in</strong></p>
number of view: 193
<p><strong>Possibly Related Posts:</strong></p>
<ul>
<li><a href="http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/">www.techedu.gov.bd Polytechnic Admission Test Result Bangladesh | Merit List Online  www.techedu.gov.bd</a></li>
<li><a href="http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/">Cameroon GCE 2010 Results | GCE Results A LEVEL | GCE Results 2010 | GCE Board www.camgceb.org</a></li>
<li><a href="http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/">Matric SSC 9th and 10th Annual Results 2010 SSC (PART I) ANNUAL Exam SSC (PART II) ANNUAL Results 2010</a></li>
<li><a href="http://www.mahol.org/blog/www-moe-gov-np-slc-results-nepal-slc-result-2066-with-marksheet-tu-result-bbs-part-2-educationsansar-com/">www.moe.gov.np SLC Results Nepal | SLC Result 2066 with marksheet TU result BBS Part 2 educationsansar.com</a></li>
<li><a href="http://www.mahol.org/blog/result-educationboard-gov-bd-h-s-c-dakhil-equivalent-2010-results-online/">result.educationboard.gov.bd H.S.C Dakhil Equivalent 2010 Results Online</a></li>
</ul><br />


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/&amp;title=www.niper.ac.in+NIPER+Results+2010+Counseling+%26+Admisson+to+M.S.+Pharm.+M.Pharm.+M.Tech+Pharm.+M.B.A.+Pharm" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/&amp;title=www.niper.ac.in+NIPER+Results+2010+Counseling+%26+Admisson+to+M.S.+Pharm.+M.Pharm.+M.Tech+Pharm.+M.B.A.+Pharm" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/&amp;title=www.niper.ac.in+NIPER+Results+2010+Counseling+%26+Admisson+to+M.S.+Pharm.+M.Pharm.+M.Tech+Pharm.+M.B.A.+Pharm&amp;desc=NIPER%20JEE%20Results%20%7C%20Admisson%20to%20M.S.%20Pharm.%20M.Pharm.%20M.Tech%20Pharm.%20M.B.A.%20Pharm%2C%0D%0A%0D%0A%0D%0AHere%20is%20update%20on%20NIPER%20JOINT%20ENTRANCE%20EXAMINATION%202010%20%28NIPER-JEE%202010%29%0D%0ANIPER%20JEE%20Results%202010%20will%20be%20declared%20today%20ie%0D%0ADeclaration%20of%20result%20of%20NIPER%20JEE-2010%20is%2016th%20July%202010.%0D%0ANIPER%20entrance%20Results%202010%20%7C%20" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/&amp;bm_description=www.niper.ac.in+NIPER+Results+2010+Counseling+%26+Admisson+to+M.S.+Pharm.+M.Pharm.+M.Tech+Pharm.+M.B.A.+Pharm&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/&amp;title=www.niper.ac.in+NIPER+Results+2010+Counseling+%26+Admisson+to+M.S.+Pharm.+M.Pharm.+M.Tech+Pharm.+M.B.A.+Pharm" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/&amp;title=www.niper.ac.in+NIPER+Results+2010+Counseling+%26+Admisson+to+M.S.+Pharm.+M.Pharm.+M.Tech+Pharm.+M.B.A.+Pharm" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/&amp;title=www.niper.ac.in+NIPER+Results+2010+Counseling+%26+Admisson+to+M.S.+Pharm.+M.Pharm.+M.Tech+Pharm.+M.B.A.+Pharm" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=www.niper.ac.in+NIPER+Results+2010+Counseling+%26+Admisson+to+M.S.+Pharm.+M.Pharm.%5B..%5D+-+http://tinyurl.com/2fhxeg2&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/&amp;submitHeadline=www.niper.ac.in+NIPER+Results+2010+Counseling+%26+Admisson+to+M.S.+Pharm.+M.Pharm.+M.Tech+Pharm.+M.B.A.+Pharm&amp;submitSummary=NIPER%20JEE%20Results%20%7C%20Admisson%20to%20M.S.%20Pharm.%20M.Pharm.%20M.Tech%20Pharm.%20M.B.A.%20Pharm%2C%0D%0A%0D%0A%0D%0AHere%20is%20update%20on%20NIPER%20JOINT%20ENTRANCE%20EXAMINATION%202010%20%28NIPER-JEE%202010%29%0D%0ANIPER%20JEE%20Results%202010%20will%20be%20declared%20today%20ie%0D%0ADeclaration%20of%20result%20of%20NIPER%20JEE-2010%20is%2016th%20July%202010.%0D%0ANIPER%20entrance%20Results%202010%20%7C%20&amp;submitCategory=world_news&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Matric SSC 9th and 10th Annual Results 2010 SSC (PART I) ANNUAL Exam SSC (PART II) ANNUAL Results 2010</title>
		<link>http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/</link>
		<comments>http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 15:27:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Results]]></category>
		<category><![CDATA[10th result 2010]]></category>
		<category><![CDATA[2010]]></category>
		<category><![CDATA[Board Results 2010]]></category>
		<category><![CDATA[Latest News]]></category>
		<category><![CDATA[online 2010]]></category>
		<category><![CDATA[result online]]></category>

		<guid isPermaLink="false">http://www.mahol.org/blog/?p=460</guid>
		<description><![CDATA[Result of SSC (10th) Annual 2010 will be annouced on 4th Aug 2010 at 10:00 am This is also called SSC (PART II) ANNUAL EXAMINATION, 2010 RESULT of pakistan board. Result of SSC (9th) Annual 2010 will be annouced on 25th Aug 2010 at 10:00 am This results are also called, SSC (PART I) ANNUAL [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Result of</strong><strong> SSC (10th) Annual 2010 </strong>will be annouced on 4th Aug 2010 at 10:00 am<br />
This is also called <strong>SSC (PART II) ANNUAL EXAMINATION, 2010 RESULT of pakistan board.</strong><br />
<strong>Result of SSC (9th) Annual 2010 </strong>will be annouced on 25th Aug 2010 at 10:00 am<br />
This results are also called, <strong>SSC (PART I) ANNUAL EXAMINATION, 2010 RESULT of pakistan board.</strong><br />
Also check out </p>
<p><strong></strong><strong>Federal Board of Intermediate and Secondary Education, Islamabad</strong><br />
<a rel="nofollow" href="http://www.fbise.edu.pk/">http://www.fbise.edu.pk/</a></p>
<p><strong>Lahore Board</strong><br />
To Check SSC Results for Lahore Board <a rel="nofollow" href="http://www.biselahore.com/">http://www.biselahore.com/</a><br />
Tel: +92-42-9200192-7<br />
Fax: +92-42-9200113</p>
<p><strong>Karachi Board of Secondary Education (SSC)</strong><br />
Website: <a rel="nofollow" href="http://www.bsek.edu.pk/">http://www.bsek.edu.pk/</a><br />
Tel: 021-6610065</p>
<p><strong>Hayderabad Board</strong><br />
To Check HSSC Results for Hayderabad Board : <a rel="nofollow" href="http://www.bisehyd.edu.pk/">http://www.bisehyd.edu.pk/</a><br />
Tel: 0221-9260277-78-79-81-82<br />
<marquee> <em><a href="http://www.bolmamabol.com/results/pak-hssc-12th-annual-2010-results-hssc-11th-annual-2010-result-of-pakistan-boards-intermediate-part-i-part-ii-results-pk/">Pak HSSC (12th) Annual 2010 Results | HSSC (11th) Annual 2010 Result Of Pakistan Boards | INTERMEDIATE PART I &#038; Part II Results.pk</a></em></marquee><br />
<strong>Rawalpindi Board:</strong><br />
To view SSC and HSSC Results for Rawalpindi Board online:<br />
<a rel="nofollow" href="http://www.biserwp.edu.pk/Result.asp">http://www.biserwp.edu.pk/Result.asp</a><br />
Tel: (92) 51-9290529<br />
Fax: (92) 51-9290552</p>
<p><strong>Lahore Board</strong><br />
To Check SSC Results for Lahore Board <a rel="nofollow" href="http://www.biselahore.com/">http://www.biselahore.com/</a><br />
Tel: +92-42-9200192-7<br />
Fax: +92-42-9200113</p>
<p><strong>Faisalabad Board</strong><br />
To Check SSC Results for Faisalabad Board <a rel="nofollow" href="http://www.bisefsd.edu.pk/Result.aspx">http://www.bisefsd.edu.pk/Result.aspx</a><br />
Tel. 042-9200677, 042-9200836<br />
Fax. 042-9200679</p>
<p><strong>Multan Board:</strong><br />
To Check SSC Results for Multan Board : <a rel="nofollow" href="http://www.bisemultan.edu.pk/">http://www.bisemultan.edu.pk/</a><br />
Phone No: 061-9210029<br />
Fax No: 061-9210012</p>
<p><strong>Gujranwala Board</strong><br />
To Check SSC Results for Gujranwala Board: <a rel="nofollow" href="http://www.bisegrw.com/">http://www.bisegrw.com/</a><br />
Tel: 092-55- 9200751 to 56 Ext:  801 and 802</p>
<p><strong>Bhawalpur Boarrd:</strong><br />
To Check SSC Results for Bhawalpur Board : <a rel="nofollow" href="http://www.bisebwp.edu.pk/result.htm">http://www.bisebwp.edu.pk/result.htm</a></p>
<p><strong>Sukkur Board</strong><br />
To Check SSC Results for Sukkur Board : <a rel="nofollow" href="http://www.bisesuksindh.edu.pk/">http://www.bisesuksindh.edu.pk/</a><br />
Tel: 071-9310620</p>
<p><strong>Sargodha Board<br />
To Check SSC Results for Sargodha Board </strong><a rel="nofollow" href="http://www.bisesargodha.edu.pk/">http://www.bisesargodha.edu.pk/</a><br />
Tel: 048-9230143 / 048-3213632<br />
Fax: 048-9230144</p>
number of view: 1696
<p><strong>Possibly Related Posts:</strong></p>
<ul>
<li><a href="http://www.mahol.org/blog/www-techedu-gov-bd-polytechnic-admission-test-result-bangladesh-merit-list-online-www-techedu-gov-bd/">www.techedu.gov.bd Polytechnic Admission Test Result Bangladesh | Merit List Online  www.techedu.gov.bd</a></li>
<li><a href="http://www.mahol.org/blog/cameroon-gce-2010-results-gce-results-a-level-gce-results-2010-gce-board-www-camgceb-org/">Cameroon GCE 2010 Results | GCE Results A LEVEL | GCE Results 2010 | GCE Board www.camgceb.org</a></li>
<li><a href="http://www.mahol.org/blog/www-niper-ac-in-niper-results-2010-counseling-admisson-to-m-s-pharm-m-pharm-m-tech-pharm-m-b-a-pharm/">www.niper.ac.in NIPER Results 2010 Counseling &#038; Admisson to M.S. Pharm. M.Pharm. M.Tech Pharm. M.B.A. Pharm</a></li>
<li><a href="http://www.mahol.org/blog/www-moe-gov-np-slc-results-nepal-slc-result-2066-with-marksheet-tu-result-bbs-part-2-educationsansar-com/">www.moe.gov.np SLC Results Nepal | SLC Result 2066 with marksheet TU result BBS Part 2 educationsansar.com</a></li>
<li><a href="http://www.mahol.org/blog/result-educationboard-gov-bd-h-s-c-dakhil-equivalent-2010-results-online/">result.educationboard.gov.bd H.S.C Dakhil Equivalent 2010 Results Online</a></li>
</ul><br />


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-wealth">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/&amp;title=Matric+SSC+9th+and+10th+Annual+Results+2010+SSC+%28PART+I%29+ANNUAL+Exam+SSC+%28PART+II%29+ANNUAL+Results+2010" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/&amp;title=Matric+SSC+9th+and+10th+Annual+Results+2010+SSC+%28PART+I%29+ANNUAL+Exam+SSC+%28PART+II%29+ANNUAL+Results+2010" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/&amp;title=Matric+SSC+9th+and+10th+Annual+Results+2010+SSC+%28PART+I%29+ANNUAL+Exam+SSC+%28PART+II%29+ANNUAL+Results+2010&amp;desc=Result%20of%20SSC%20%2810th%29%20Annual%202010%20will%20be%20annouced%20on%204th%20Aug%202010%20at%2010%3A00%20am%0D%0AThis%20is%20also%20called%20SSC%20%28PART%20II%29%20ANNUAL%20EXAMINATION%2C%202010%20RESULT%20of%20pakistan%20board.%0D%0AResult%20of%20SSC%20%289th%29%20Annual%202010%20will%20be%20annouced%20on%2025th%20Aug%202010%20at%2010%3A00%20am%0D%0AThis%20results%20are%20also%20called%2C%20SSC%20%28PART%20I%29%20ANNUAL%20EXAMIN" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/&amp;bm_description=Matric+SSC+9th+and+10th+Annual+Results+2010+SSC+%28PART+I%29+ANNUAL+Exam+SSC+%28PART+II%29+ANNUAL+Results+2010&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/&amp;title=Matric+SSC+9th+and+10th+Annual+Results+2010+SSC+%28PART+I%29+ANNUAL+Exam+SSC+%28PART+II%29+ANNUAL+Results+2010" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/&amp;title=Matric+SSC+9th+and+10th+Annual+Results+2010+SSC+%28PART+I%29+ANNUAL+Exam+SSC+%28PART+II%29+ANNUAL+Results+2010" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/&amp;title=Matric+SSC+9th+and+10th+Annual+Results+2010+SSC+%28PART+I%29+ANNUAL+Exam+SSC+%28PART+II%29+ANNUAL+Results+2010" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Matric+SSC+9th+and+10th+Annual+Results+2010+SSC+%28PART+I%29+ANNUAL+Exam+SSC+%28PART+I%5B..%5D+-+http://tinyurl.com/28yqzkn&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/&amp;submitHeadline=Matric+SSC+9th+and+10th+Annual+Results+2010+SSC+%28PART+I%29+ANNUAL+Exam+SSC+%28PART+II%29+ANNUAL+Results+2010&amp;submitSummary=Result%20of%20SSC%20%2810th%29%20Annual%202010%20will%20be%20annouced%20on%204th%20Aug%202010%20at%2010%3A00%20am%0D%0AThis%20is%20also%20called%20SSC%20%28PART%20II%29%20ANNUAL%20EXAMINATION%2C%202010%20RESULT%20of%20pakistan%20board.%0D%0AResult%20of%20SSC%20%289th%29%20Annual%202010%20will%20be%20annouced%20on%2025th%20Aug%202010%20at%2010%3A00%20am%0D%0AThis%20results%20are%20also%20called%2C%20SSC%20%28PART%20I%29%20ANNUAL%20EXAMIN&amp;submitCategory=world_news&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://www.mahol.org/blog/matric-ssc-9th-and-10th-annual-results-2010-ssc-part-i-annual-exam-ssc-part-ii-annual-results-2010/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	<item><title>SSC Result 2010 Latur Aurangabad Pune Mumbai Board at www.mahresult.nic.in [del.icio.us]</title><link>http://www.mahol.org/blog/results/ssc-results-2010-10th-result-2010-maharashtra-www-msbshse-ac-in-ssc-result-2010-latur-pune/</link><category>ssc results 2010</category><dc:creator>bhagwat</dc:creator><pubDate>Wed, 16 Jun 2010 23:38:38 PDT</pubDate><guid isPermaLink="true">http://www.mahol.org/blog/results/ssc-results-2010-10th-result-2010-maharashtra-www-msbshse-ac-in-ssc-result-2010-latur-pune/</guid><description>WHO IS MAHARASHTRA SSC TOPPER. ssc result 2010.  www.mahresult.nic.in studyssconline, mhssc, maharesults 2010, msbshse result 2010, maharesults nic 2010 maharesults nic 2010, mhssc result, msbshse result 2010, mah result 2010, sslc results 2010 maharashtra</description><taxo:topics xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/">
      <rdf:Bag xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/ssc" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/results" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/2010" />
      </rdf:Bag>
    </taxo:topics></item><item><title>Introduction to the New Mainframe: z/OS Basics [del.icio.us]</title><link>http://www.redbooks.ibm.com/redbooks.nsf/RedbookAbstracts/sg246366.html</link><category>mainmainframe</category><dc:creator>bhagwat</dc:creator><pubDate>Wed, 16 Jun 2010 22:31:32 PDT</pubDate><guid isPermaLink="true">http://www.redbooks.ibm.com/redbooks.nsf/RedbookAbstracts/sg246366.html</guid><description>Book By IBM online, Introduction to the New Mainframe: z/OS Basics;  Part 1. Introduction to z/OS and the mainframe environment&lt;br /&gt;
Chapter 1. Introduction to the new mainframe&lt;br /&gt;
Chapter 2. Mainframe hardware systems and high availability&lt;br /&gt;
Chapter 3. z/OS overview&lt;br /&gt;
Chapter 4. TSO/E, ISPF, and UNIX: Interactive facilities of z/OS&lt;br /&gt;
Chapter 5. Working with data sets&lt;br /&gt;
Chapter 6. Using JCL and SDSF&lt;br /&gt;
Chapter 7. Batch processing and JES&lt;br /&gt;
Part 2. Application programming on z/OS&lt;br /&gt;
Chapter 8. Designing and developing applications for z/OS&lt;br /&gt;
Chapter 9. Using programming languages on z/OS&lt;br /&gt;
Chapter 10. Compiling and link-editing a program on z/OS&lt;br /&gt;
Part 3. Online workloads for z/OS&lt;br /&gt;
Chapter 11. Transaction management systems on z/OS&lt;br /&gt;
Chapter 12. Database management systems on z/OS&lt;br /&gt;
Chapter 13. z/OS HTTP Server&lt;br /&gt;
Chapter 14. WebSphere Application Server on z/OS&lt;br /&gt;
Chapter 15. Messaging and queuing&lt;br /&gt;
Part 4. System programming on z/OS&lt;br /&gt;
Chapter 16. Overview of system programming&lt;br /&gt;
Chapter 17. Using SMP/E</description><taxo:topics xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/">
      <rdf:Bag xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/mainmainframe" />
      </rdf:Bag>
    </taxo:topics></item><item><title>Thread safety Programs [del.icio.us]</title><link>http://publib.boulder.ibm.com/infocenter/systems/index.jsp?topic=/com.ibm.aix.genprogc/doc/genprogc/writing_reentrant_thread_safe_code.htm</link><category>linux programming c reference development reentrant functions ibm</category><dc:creator>bhagwat</dc:creator><pubDate>Sun, 01 Nov 2009 01:23:20 PDT</pubDate><guid isPermaLink="true">http://publib.boulder.ibm.com/infocenter/systems/index.jsp?topic=/com.ibm.aix.genprogc/doc/genprogc/writing_reentrant_thread_safe_code.htm</guid><description>Thread safety program writing guide..</description><taxo:topics xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/">
      <rdf:Bag xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/linux" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/programming" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/c" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/reference" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/development" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/reentrant" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/functions" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/ibm" />
      </rdf:Bag>
    </taxo:topics></item><item><title>Linux Good Articles Collections [del.icio.us]</title><link>http://www.ffnn.nl/pages/articles.php</link><category>GDB, linux sysadmin technology</category><dc:creator>bhagwat</dc:creator><pubDate>Sun, 01 Nov 2009 01:18:30 PDT</pubDate><guid isPermaLink="true">http://www.ffnn.nl/pages/articles.php</guid><description>Using GDB to backtrace</description><taxo:topics xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/">
      <rdf:Bag xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/GDB%2C" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/linux" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/sysadmin" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/technology" />
      </rdf:Bag>
    </taxo:topics></item><item><title>Simple jQuery Dropdowns | CSS-Tricks [del.icio.us]</title><link>http://css-tricks.com/simple-jquery-dropdowns/</link><dc:creator>bhagwat</dc:creator><pubDate>Fri, 14 Aug 2009 02:46:37 PDT</pubDate><guid isPermaLink="true">http://css-tricks.com/simple-jquery-dropdowns/</guid></item><item><title>iconPot - totally free icons [del.icio.us]</title><link>http://www.iconpot.com/</link><category>webdesign</category><dc:creator>bhagwat</dc:creator><pubDate>Fri, 14 Aug 2009 02:45:20 PDT</pubDate><guid isPermaLink="true">http://www.iconpot.com/</guid><taxo:topics xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/">
      <rdf:Bag xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/webdesign" />
      </rdf:Bag>
    </taxo:topics></item><item><title>Text Rotation with CSS [del.icio.us]</title><link>http://snook.ca/archives/html_and_css/css-text-rotation</link><category>css</category><dc:creator>bhagwat</dc:creator><pubDate>Fri, 14 Aug 2009 02:44:58 PDT</pubDate><guid isPermaLink="true">http://snook.ca/archives/html_and_css/css-text-rotation</guid><taxo:topics xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/">
      <rdf:Bag xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/css" />
      </rdf:Bag>
    </taxo:topics></item><item><title>WordPress Resources - 48 Resources, Tips, Tricks &amp; Themes | Think Design [del.icio.us]</title><link>http://thinkdesignblog.com/wordpress-resources-48-resources-tips-tricks-themes.htm</link><category>webdesign</category><dc:creator>bhagwat</dc:creator><pubDate>Fri, 14 Aug 2009 02:44:00 PDT</pubDate><guid isPermaLink="true">http://thinkdesignblog.com/wordpress-resources-48-resources-tips-tricks-themes.htm</guid><taxo:topics xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/">
      <rdf:Bag xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/webdesign" />
      </rdf:Bag>
    </taxo:topics></item><item><title>WordPress Theme Development Check List &amp;#8211; PDF Version &amp;laquo;  WP TOY [del.icio.us]</title><link>http://wptoy.com/resources/wordpress-theme-development-check-list-pdf-version/</link><category>webdesign</category><dc:creator>bhagwat</dc:creator><pubDate>Fri, 14 Aug 2009 02:22:33 PDT</pubDate><guid isPermaLink="true">http://wptoy.com/resources/wordpress-theme-development-check-list-pdf-version/</guid><taxo:topics xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/">
      <rdf:Bag xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/webdesign" />
      </rdf:Bag>
    </taxo:topics></item><item><title>Translating WordPress into another language (themes and plugins too) | Inside WordPress | Urban Giraffe [del.icio.us]</title><link>http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/</link><category>web</category><dc:creator>bhagwat</dc:creator><pubDate>Fri, 14 Aug 2009 02:21:08 PDT</pubDate><guid isPermaLink="true">http://urbangiraffe.com/articles/translating-wordpress-themes-and-plugins/</guid><taxo:topics xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/">
      <rdf:Bag xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/web" />
      </rdf:Bag>
    </taxo:topics></item><item><title>30 Inventive Website Footer Designs | Design Newz [del.icio.us]</title><link>http://design-newz.com/2009/08/01/30-inventive-website-footer-designs/</link><category>webdesign</category><dc:creator>bhagwat</dc:creator><pubDate>Fri, 14 Aug 2009 02:20:34 PDT</pubDate><guid isPermaLink="true">http://design-newz.com/2009/08/01/30-inventive-website-footer-designs/</guid><taxo:topics xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/">
      <rdf:Bag xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/webdesign" />
      </rdf:Bag>
    </taxo:topics></item><item><title>Kernel Korner - Allocating Memory in the Kernel [del.icio.us]</title><link>http://www.linuxjournal.com/article/6930</link><category>linux programming kernel memory gfp</category><dc:creator>bhagwat</dc:creator><pubDate>Fri, 07 Aug 2009 05:50:07 PDT</pubDate><guid isPermaLink="true">http://www.linuxjournal.com/article/6930</guid><description>Good Explanation on GFP_ATOMIC or GFP_KERNEL flags in kmalloc() function</description><taxo:topics xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/">
      <rdf:Bag xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/linux" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/programming" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/kernel" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/memory" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/gfp" />
      </rdf:Bag>
    </taxo:topics></item><item><title>Greg K-H's Linux Stuff [del.icio.us]</title><link>http://www.kroah.com/linux/</link><category>linux programming embedded development kernel driver research</category><dc:creator>bhagwat</dc:creator><pubDate>Wed, 29 Jul 2009 00:11:05 PDT</pubDate><guid isPermaLink="true">http://www.kroah.com/linux/</guid><description>linux programming embedded development kernel stuff; good links collection</description><taxo:topics xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/">
      <rdf:Bag xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/linux" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/programming" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/embedded" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/development" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/kernel" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/driver" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/research" />
      </rdf:Bag>
    </taxo:topics></item><item><title>Free Online Course Materials | MIT OpenCourseWare [del.icio.us]</title><link>http://ocw.mit.edu/OcwWeb/web/home/home/index.htm</link><category>web open opensource books free tutorial education mit learning university</category><dc:creator>bhagwat</dc:creator><pubDate>Sun, 26 Jul 2009 21:57:35 PDT</pubDate><guid isPermaLink="true">http://ocw.mit.edu/OcwWeb/web/home/home/index.htm</guid><description>MIT Open Course videos and lectures ;Free lecture notes, exams, and videos from MIT.&lt;br /&gt;
The lecture videos can be downloaded from youtube.</description><taxo:topics xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/">
      <rdf:Bag xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/web" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/open" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/opensource" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/books" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/free" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/tutorial" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/education" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/mit" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/learning" />
        <rdf:li rdf:resource="http://www.delicious.com/bhagwat/university" />
      </rdf:Bag>
    </taxo:topics></item></channel>
</rss>
