<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <link>https://hg.ecoscentric.com/ecos/</link>
    <language>en-us</language>

    <title>ecos: packages/kernel/current/src/common/thread.cxx history</title>
    <description>packages/kernel/current/src/common/thread.cxx revision history</description>
    <item>
    <title>* kernel/current/src/common/thread.cxx,</title>
    <link>https://hg.ecoscentric.com/ecos/log/041821fb5427/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[* kernel/current/src/common/thread.cxx,<br/>
  services/cpuload/current/src/cpuload.cxx:<br/>
  Add volatile to thread_idle_loops for correct operation when built<br/>
  with GCC 4.]]></description>
    <author>&#106;&#108;&#100;</author>
    <pubDate>Mon, 10 May 2010 15:58:36 +0000</pubDate>
</item>
<item>
    <title>* src/common/thread.cxx: Use the Cyg_Scheduler::get_current_thread()</title>
    <link>https://hg.ecoscentric.com/ecos/log/1435928aad06/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[* src/common/thread.cxx: Use the Cyg_Scheduler::get_current_thread()<br/>
  convenience function when instrumenting thread events. Bug reported<br/>
  by Pieter-Jan Busschaert.]]></description>
    <author>&#106;&#108;&#100;</author>
    <pubDate>Thu, 14 May 2009 18:26:53 +0000</pubDate>
</item>
<item>
    <title>Update all copyright banners to reflect FSF ownership; fix and improve licence text.</title>
    <link>https://hg.ecoscentric.com/ecos/log/74dbf4c3f2e1/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Update all copyright banners to reflect FSF ownership; fix and improve licence text.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Thu, 29 Jan 2009 17:47:46 +0000</pubDate>
</item>
<item>
    <title>Add (char *) casts to make GCC/4.2.x happy.</title>
    <link>https://hg.ecoscentric.com/ecos/log/ef95b9adfb61/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Add (char *) casts to make GCC/4.2.x happy.]]></description>
    <author>&#103;&#116;&#104;&#111;&#109;&#97;&#115;</author>
    <pubDate>Mon, 02 Jul 2007 11:48:59 +0000</pubDate>
</item>
<item>
    <title>* src/sched/sched.cxx (thread_entry): Fixed a bug which could</title>
    <link>https://hg.ecoscentric.com/ecos/log/1406c9fadbf3/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[* src/sched/sched.cxx (thread_entry): Fixed a bug which could<br/>
	cause a thread to be started with a non-zero scheduler lock. The<br/>
	previous code only decremented it by 1 so if the previous thread<br/>
	was executing with the lock &gt; 1 the thread ended up with a<br/>
	non-zero lock. This is fixed by decrementing the lock in a loop<br/>
	until it reaches zero.<br/>
<br/>
	* src/common/thread.cxx (idle_thread_main): Added an assert for a<br/>
	non-zero scheduler lock.]]></description>
    <author>&#110;&#105;&#99;&#107;&#103;</author>
    <pubDate>Thu, 19 Jan 2006 17:53:58 +0000</pubDate>
</item>
<item>
    <title>* src/sched/sched.cxx:</title>
    <link>https://hg.ecoscentric.com/ecos/log/5d7f57fd1729/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[* src/sched/sched.cxx:<br/>
	* include/sched.hxx (class Cyg_Scheduler): Added thread_entry()<br/>
	member function. This handles thread startup housekeeping. Zeroing<br/>
	the scheduler lock is handled by calling unlock() so that DSRs may<br/>
	be run.<br/>
<br/>
	* src/common/thread.cxx (thread_entry): Refactored code to call<br/>
	Cyg_Scheduler::thread_entry() instead of doing all the work here.]]></description>
    <author>&#110;&#105;&#99;&#107;&#103;</author>
    <pubDate>Tue, 10 Jan 2006 15:52:54 +0000</pubDate>
</item>
<item>
    <title>* src/common/thread.cxx: Fix potential warning and overflow with</title>
    <link>https://hg.ecoscentric.com/ecos/log/7002f6e48db9/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[* src/common/thread.cxx: Fix potential warning and overflow with<br/>
	CYGNUM_KERNEL_THREADS_DATA_MAX == 32.]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Thu, 30 Jan 2003 07:02:53 +0000</pubDate>
</item>
<item>
    <title>* src/common/kapi.cxx:</title>
    <link>https://hg.ecoscentric.com/ecos/log/a65a4055f146/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[* src/common/kapi.cxx:<br/>
	* include/kapi.h:<br/>
	Added function cyg_thread_get_next(), cyg_thread_find() and<br/>
	cyg_thread_get_info() to allow the current set of threads to be<br/>
	enumerated, and per-thread information to be retrieved safely.<br/>
<br/>
	* doc/kernel.sgml: Documented new KAPI calls.<br/>
<br/>
	* src/common/thread.cxx: Zero unique_id in thread destructor so<br/>
	that a stale thread pointer can be checked for validity.<br/>
<br/>
	* include/instrmnt.h:<br/>
	Added cyg_instrument_state() to report the current state of an<br/>
	instrumentation flag.<br/>
	Moved ifdef for CYGDBG_KERNEL_INSTRUMENT_MSGS out of within FLAGS<br/>
	ifdef. We can have messages without flags.<br/>
<br/>
	* src/instrmnt/meminst.cxx:<br/>
	Added cyg_instrument_state() to report the current state of an<br/>
	instrumentation flag.<br/>
	Modified cyg_instrument_msg() in line with header and table<br/>
	changes.<br/>
<br/>
	* host/instr/dump_instr.c:<br/>
	* host/instr/instrument.sh:<br/>
	* include/instrument_desc.h:<br/>
	Added a final NULL element to the generated table in<br/>
	instrument_desc.h to mark its end. Otherwise code that does not<br/>
	have access to the table definition cannot find its end. Also<br/>
	added ifdefs to allow instrument_desc.h to be used to acquire the<br/>
	structure definition and table pointer.]]></description>
    <author>&#110;&#105;&#99;&#107;&#103;</author>
    <pubDate>Thu, 12 Dec 2002 18:31:34 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2002-05-23-21:39:14-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/d2c90368aeef/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Merge from eCos master repository on 2002-05-23-21:39:14-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Thu, 23 May 2002 22:59:51 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2002-05-20-20:11:54-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/e0c0827131d1/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Merge from eCos master repository on 2002-05-20-20:11:54-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Mon, 20 May 2002 22:19:26 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-09-12-03:52:30-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/9160a8005d76/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Merge from eCos master repository on 2001-09-12-03:52:30-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Wed, 12 Sep 2001 04:21:13 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-09-07-06:43:02-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/f62680ef1804/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Merge from eCos master repository on 2001-09-07-06:43:02-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Wed, 12 Sep 2001 00:59:17 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-08-10-19:22:57-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/4c750ce71ae3/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Merge from eCos master repository on 2001-08-10-19:22:57-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 10 Aug 2001 19:27:55 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-06-22-17:38:39-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/0d2b193a635f/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Merge from eCos master repository on 2001-06-22-17:38:39-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 22 Jun 2001 18:18:44 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-02-12-23:44:24-GMT</title>
    <link>https://hg.ecoscentric.com/ecos/log/25e238959bae/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Merge from eCos master repository on 2001-02-12-23:44:24-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 13 Feb 2001 01:23:16 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2001-01-05-06:43:02-GMT</title>
    <link>https://hg.ecoscentric.com/ecos/log/d397fc472bcf/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Merge from eCos master repository on 2001-01-05-06:43:02-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 05 Jan 2001 17:12:36 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-10-31-00:30:36-GMT</title>
    <link>https://hg.ecoscentric.com/ecos/log/0ae0bc38e387/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Merge from eCos master repository on 2000-10-31-00:30:36-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 31 Oct 2000 20:53:09 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-09-11-03:00:13-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/0ec04793409a/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Merge from eCos master repository on 2000-09-11-03:00:13-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Mon, 11 Sep 2000 02:42:46 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-08-21-22:40:54-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/6ed91473a1cd/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Merge from eCos master repository on 2000-08-21-22:40:54-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 25 Aug 2000 17:32:38 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-03-28-19:50:47-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/59d97b6ba612/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Merge from eCos master repository on 2000-03-28-19:50:47-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 28 Mar 2000 20:13:29 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-02-02-19:16:44-GMT</title>
    <link>https://hg.ecoscentric.com/ecos/log/bf00f99aec69/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Merge from eCos master repository on 2000-02-02-19:16:44-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Wed, 02 Feb 2000 19:57:02 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 2000-01-28-04:28:11-GMT</title>
    <link>https://hg.ecoscentric.com/ecos/log/c38311975d4f/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Merge from eCos master repository on 2000-01-28-04:28:11-GMT]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 28 Jan 2000 04:59:39 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-05-21-22:05:54-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/ece80412419a/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Merge from eCos master repository on 1999-05-21-22:05:54-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 21 May 1999 15:09:30 +0000</pubDate>
</item>
<item>
    <title>Merge from eCos master repository on 1999-05-14-19:27:43-BST</title>
    <link>https://hg.ecoscentric.com/ecos/log/d376b777e2ce/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Merge from eCos master repository on 1999-05-14-19:27:43-BST]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Fri, 14 May 1999 12:20:00 +0000</pubDate>
</item>
<item>
    <title>Block commit of eCos version 1.2.1</title>
    <link>https://hg.ecoscentric.com/ecos/log/443894e2e912/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Block commit of eCos version 1.2.1]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 11 May 1999 12:24:34 +0000</pubDate>
</item>
<item>
    <title>Initial commit of eCos version 1.1</title>
    <link>https://hg.ecoscentric.com/ecos/log/3111d98ba7b3/packages/kernel/current/src/common/thread.cxx</link>
    <description><![CDATA[Initial commit of eCos version 1.1]]></description>
    <author>&#106;&#108;&#97;&#114;&#109;&#111;&#117;&#114;</author>
    <pubDate>Tue, 11 May 1999 11:16:07 +0000</pubDate>
</item>

  </channel>
</rss>
