<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[singly-linked-list]]></title><description><![CDATA[<p>hola</p>
<p>kann mir einer erklaeren wie das mit singly-linked-lists funktioniert ? in dem SDK steht es im bereich synchronisation drinnen. was kann ich damit machen ?<br />
ist das so was aehnliches wie ein FILO-kontainer?</p>
<p>Meep Meep</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/185860/singly-linked-list</link><generator>RSS for Node</generator><lastBuildDate>Sun, 05 Jul 2026 09:14:29 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/185860.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 02 Jul 2007 09:25:31 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to singly-linked-list on Mon, 02 Jul 2007 09:25:31 GMT]]></title><description><![CDATA[<p>hola</p>
<p>kann mir einer erklaeren wie das mit singly-linked-lists funktioniert ? in dem SDK steht es im bereich synchronisation drinnen. was kann ich damit machen ?<br />
ist das so was aehnliches wie ein FILO-kontainer?</p>
<p>Meep Meep</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1316660</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1316660</guid><dc:creator><![CDATA[Meep Meep]]></dc:creator><pubDate>Mon, 02 Jul 2007 09:25:31 GMT</pubDate></item><item><title><![CDATA[Reply to singly-linked-list on Mon, 02 Jul 2007 09:30:11 GMT]]></title><description><![CDATA[<p>meinste das?<br />
--&gt; <a href="http://msdn2.microsoft.com/En-US/library/aa489548.aspx" rel="nofollow">http://msdn2.microsoft.com/En-US/library/aa489548.aspx</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1316662</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1316662</guid><dc:creator><![CDATA[pale dog]]></dc:creator><pubDate>Mon, 02 Jul 2007 09:30:11 GMT</pubDate></item><item><title><![CDATA[Reply to singly-linked-list on Mon, 02 Jul 2007 09:45:02 GMT]]></title><description><![CDATA[<p>jo genau diese meinte ich. aber ich werde aus dieser seite nicht so recht schlau.<br />
ich brauch naemlich einen kontainer der nach dem FIFO prinzip arbeitet und mit dem mehrere prozesse arbeiten koennen. wird so was aehnliches wie die MessageQueue.<br />
hab mir derzeit eine list aehnlich std::list gebastelt, welche ein MemoryMappedFile fuer die prozesse verwendet und mittels mutexes (is das die mehrzahl von mutex?) die synchronisation macht.<br />
jetzt dachte ich das ich dafuer die singly-linkes-list missbrauchen koennte.</p>
<p>Meep Meep</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1316677</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1316677</guid><dc:creator><![CDATA[Meep Meep]]></dc:creator><pubDate>Mon, 02 Jul 2007 09:45:02 GMT</pubDate></item><item><title><![CDATA[Reply to singly-linked-list on Mon, 02 Jul 2007 09:51:33 GMT]]></title><description><![CDATA[<p>Für eine FIFO-Struktur benötigst du Zeiger auf den Kopf der Liste (dort werden die jeweils ältesten Elemente rausgenommen) und das letzte Element (dort hängst du neue Elemente an).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1316684</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1316684</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Mon, 02 Jul 2007 09:51:33 GMT</pubDate></item><item><title><![CDATA[Reply to singly-linked-list on Mon, 02 Jul 2007 10:00:25 GMT]]></title><description><![CDATA[<p>danke, damit waere eine frage scho mal positiv beantwortet.<br />
und wie sieht das dann mit der synchronisation aus (bei mehreren prozessen) ? ist die singly-linked-list schon von haus aus synchronisiert oder brauche ich dafuer noch ein anderes synchronisationsobjekt ?</p>
<p>Meep Meep</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1316689</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1316689</guid><dc:creator><![CDATA[Meep Meep]]></dc:creator><pubDate>Mon, 02 Jul 2007 10:00:25 GMT</pubDate></item><item><title><![CDATA[Reply to singly-linked-list on Mon, 02 Jul 2007 10:03:37 GMT]]></title><description><![CDATA[<blockquote>
<p>The system also provides atomic versions of the list operations, ExInterlockedPopEntryList and ExInterlockedPushEntryList. Each takes an additional spin lock parameter. The routine acquires the spin lock before updating the list and then releases the spin lock after the operation is completed. Each operation on the list must use the same spin lock to ensure that each such operation on the list is synchronized with every other. You must use the spin lock only be with the ExInterlockedXxxList routines. Do not use the spin lock for any other purpose. Drivers can use the same lock for multiple lists, but this behavior increases lock contention so drivers should avoid it.</p>
</blockquote>
<p>Die Listen können synchronisiert werden, aber um das zugehörige Sync-Objekt (der oben erwähnte &quot;spin lock&quot;) mußt du dich selber kümmern.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1316690</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1316690</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Mon, 02 Jul 2007 10:03:37 GMT</pubDate></item><item><title><![CDATA[Reply to singly-linked-list on Mon, 02 Jul 2007 10:18:17 GMT]]></title><description><![CDATA[<p>die spin locks (KSPIN_LOCK) gibt's nur im kernel.<br />
wenn du sowas im user mode brauchst, kannste z.b. was mit den push/pop macros für SINGLE_LIST_ENTRY und einem mutex selber basteln...<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1316702</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1316702</guid><dc:creator><![CDATA[pale dog]]></dc:creator><pubDate>Mon, 02 Jul 2007 10:18:17 GMT</pubDate></item></channel></rss>