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

<channel>
	<title>சுதர்சன் சாந்தியப்பன் &#187; malloc_alloc</title>
	<atom:link href="http://sudarsun.in/blog/tag/malloc_alloc/feed/" rel="self" type="application/rss+xml" />
	<link>http://sudarsun.in/blog</link>
	<description>Dream of the Impossible™</description>
	<lastBuildDate>Sun, 05 Feb 2012 12:03:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>STLportன் Allocatorஐ மாற்றுவது எப்படி</title>
		<link>http://sudarsun.in/blog/2008/08/stlport%e0%ae%a9%e0%af%8d-allocator%e0%ae%90-%e0%ae%ae%e0%ae%be%e0%ae%b1%e0%af%8d%e0%ae%b1%e0%af%81%e0%ae%b5%e0%ae%a4%e0%af%81-%e0%ae%8e%e0%ae%aa%e0%af%8d%e0%ae%aa%e0%ae%9f%e0%ae%bf/</link>
		<comments>http://sudarsun.in/blog/2008/08/stlport%e0%ae%a9%e0%af%8d-allocator%e0%ae%90-%e0%ae%ae%e0%ae%be%e0%ae%b1%e0%af%8d%e0%ae%b1%e0%af%81%e0%ae%b5%e0%ae%a4%e0%af%81-%e0%ae%8e%e0%ae%aa%e0%af%8d%e0%ae%aa%e0%ae%9f%e0%ae%bf/#comments</comments>
		<pubDate>Fri, 01 Aug 2008 06:07:57 +0000</pubDate>
		<dc:creator>sudarsun</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[KnowHow]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[allocators]]></category>
		<category><![CDATA[malloc_alloc]]></category>
		<category><![CDATA[new_alloc]]></category>
		<category><![CDATA[pthread_alloc]]></category>
		<category><![CDATA[stlport]]></category>

		<guid isPermaLink="false">http://sudarsun.in/blog/?p=29</guid>
		<description><![CDATA[STLPort containerகள் Allocatorகளை பயனர்கள் மாற்றியமைக்கும்படி உருவாக்கப்பட்டுள்ளன. இவை முதன்மையாக Node Allocatorகளை கொண்டுள்ளன. ஆனால், பயனர்களின் விருப்பம்போல, மற்ற Allocatorகளை (முறையே: malloc_alloc, new_alloc, pthread_alloc) உபயோகப்படுத்திக்கொள்ளலாம். மேலும், பயனர்களின் Allocatorகளை (user-defined allocators) உருவாக்கி உபயோகிக்கலாம். malloc_alloc, pthread_alloc, new_alloc போன்றவைகளை உபயோகிக்க நீங்கள் STLலை configure செய்ய வேண்டும். அதற்கு stlport/stl/configs/user_config.h (STLport 5.1.5) என்ற கோப்பை கீழ்கண்டவாறு வரியை சேர்க வேண்டும். 1. malloc_alloc: #define _STLP_USE_MALLOC2. new_alloc: #define _STLP_USE_NEWALLOC3. [...]]]></description>
			<content:encoded><![CDATA[<p>STLPort containerகள் Allocatorகளை பயனர்கள் மாற்றியமைக்கும்படி உருவாக்கப்பட்டுள்ளன.  இவை முதன்மையாக Node Allocatorகளை கொண்டுள்ளன.  ஆனால், பயனர்களின் விருப்பம்போல, மற்ற Allocatorகளை (முறையே: malloc_alloc, new_alloc, pthread_alloc) உபயோகப்படுத்திக்கொள்ளலாம்.  மேலும், பயனர்களின் Allocatorகளை (user-defined allocators) உருவாக்கி உபயோகிக்கலாம்.</p>
<p>malloc_alloc, pthread_alloc, new_alloc போன்றவைகளை உபயோகிக்க நீங்கள் STLலை configure செய்ய வேண்டும். அதற்கு stlport/stl/configs/user_config.h (STLport 5.1.5) என்ற கோப்பை கீழ்கண்டவாறு வரியை சேர்க வேண்டும். </p>
<p>1. malloc_alloc:  #define _STLP_USE_MALLOC<br />2. new_alloc:  #define _STLP_USE_NEWALLOC<br />3. pthread_alloc: #define _STLP_USE_PERTHREAD_ALLOC</p>
<p>உங்களுக்கு debugging விருப்பம் வேண்டுமானால், கீழ்கண்ட வரியையும் சேர்க்கவேண்டும்.</p>
<p>#define _STLP_DEBUG_ALLOC</p>
<p>மேற்கொண்டு அறிந்துக்கொள்ள <a target="_blank" href="http://www.sgi.com/tech/stl/alloc.html">SGI STL Allocator</a><a target="_blank" href="http://www.sgi.com/tech/stl/alloc.html"> Design</a> பக்கத்தை பார்க்கவும்.</p>
]]></content:encoded>
			<wfw:commentRss>http://sudarsun.in/blog/2008/08/stlport%e0%ae%a9%e0%af%8d-allocator%e0%ae%90-%e0%ae%ae%e0%ae%be%e0%ae%b1%e0%af%8d%e0%ae%b1%e0%af%81%e0%ae%b5%e0%ae%a4%e0%af%81-%e0%ae%8e%e0%ae%aa%e0%af%8d%e0%ae%aa%e0%ae%9f%e0%ae%bf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  sudarsun.in/blog/tag/malloc_alloc/feed/ ) in 0.29974 seconds, on Feb 8th, 2012 at 1:41 pm UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on Feb 8th, 2012 at 2:41 pm UTC -->
