<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Серый форум &mdash; AHK: узнать заморожен(suspend) ли процесс]]></title>
		<link>https://forum.script-coding.com/viewtopic.php?id=11762</link>
		<atom:link href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=11762&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[Недавние сообщения в теме «AHK: узнать заморожен(suspend) ли процесс».]]></description>
		<lastBuildDate>Thu, 30 Jun 2016 18:48:23 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=105721#p105721</link>
			<description><![CDATA[<p>Добрался до компьютера.<br />Спасибо огромное все работает <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /></p>]]></description>
			<author><![CDATA[null@example.com (Dworkin)]]></author>
			<pubDate>Thu, 30 Jun 2016 18:48:23 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=105721#p105721</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=105600#p105600</link>
			<description><![CDATA[<div class="codebox"><pre><code>isProcessSuspended(pid)	; Retrieves another process&#039;s suspension state.
{	; 0 = Unknown, 1 = Other, 2 = Ready, 3 = Running, 4 = Blocked, 5 = Suspended Blocked, 6 = Suspended Ready. http://msdn.microsoft.com/en-us/library/aa394372%28v=vs.85%29.aspx
	For thread In ComObjGet(&quot;winmgmts:&quot;).ExecQuery(&quot;SELECT * FROM Win32_Thread WHERE ProcessHandle = &quot; pid)
		If (thread.ThreadWaitReason != 5)
			Return 0	; Not suspended.
	Return 1	; Suspended.
}</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Malcev)]]></author>
			<pubDate>Mon, 27 Jun 2016 12:32:45 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=105600#p105600</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=105599#p105599</link>
			<description><![CDATA[<p>Нет, он определяет только, заморожен ли один из его потоков.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Mon, 27 Jun 2016 12:07:30 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=105599#p105599</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=105598#p105598</link>
			<description><![CDATA[<p><strong>teadrinker</strong><br />Если в Process Eplorer&#039;e поставить любой процесс на паузу(на англ Suspend), то функция от <strong>Drugoy</strong> это определяет.</p>]]></description>
			<author><![CDATA[null@example.com (Nikva)]]></author>
			<pubDate>Mon, 27 Jun 2016 12:03:55 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=105598#p105598</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=105591#p105591</link>
			<description><![CDATA[<p>И что этот код выдаёт?</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Mon, 27 Jun 2016 10:00:46 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=105591#p105591</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=105587#p105587</link>
			<description><![CDATA[<div class="codebox"><pre><code>isProcessSuspended(pid)	; Retrieves another process&#039;s suspension state.
{	; 0 = Unknown, 1 = Other, 2 = Ready, 3 = Running, 4 = Blocked, 5 = Suspended Blocked, 6 = Suspended Ready. http://msdn.microsoft.com/en-us/library/aa394372%28v=vs.85%29.aspx
	For thread In ComObjGet(&quot;winmgmts:&quot;).ExecQuery(&quot;SELECT * FROM Win32_Thread WHERE ProcessHandle = &quot; pid)
		If (thread.ThreadWaitReason == 5)
			Return 1	; Suspended.
	Return 0	; Not suspended.
}</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Drugoy)]]></author>
			<pubDate>Mon, 27 Jun 2016 09:07:52 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=105587#p105587</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=105576#p105576</link>
			<description><![CDATA[<p>Да, я перепутал слово, но в русском чаще «поток» используется.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sun, 26 Jun 2016 15:07:16 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=105576#p105576</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=105573#p105573</link>
			<description><![CDATA[<p>Не, ветка не подходит, они же из одного ствола идут, а здесь именно нитки, параллельно. <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /></p>]]></description>
			<author><![CDATA[null@example.com (YMP)]]></author>
			<pubDate>Sun, 26 Jun 2016 14:57:30 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=105573#p105573</guid>
		</item>
		<item>
			<title><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=105570#p105570</link>
			<description><![CDATA[<p>Процесс не бывает заморожен, бывает замороженной ветка. Гугл в помощь по запросу &quot;get thread suspend state&quot;.</p>]]></description>
			<author><![CDATA[null@example.com (teadrinker)]]></author>
			<pubDate>Sun, 26 Jun 2016 14:09:13 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=105570#p105570</guid>
		</item>
		<item>
			<title><![CDATA[AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link>https://forum.script-coding.com/viewtopic.php?pid=105568#p105568</link>
			<description><![CDATA[<p>Скажите пожалуйста можно ли как-то узнать заморожен(suspend) или завис процесс и как?</p>]]></description>
			<author><![CDATA[null@example.com (Dworkin)]]></author>
			<pubDate>Sun, 26 Jun 2016 13:42:36 +0000</pubDate>
			<guid>https://forum.script-coding.com/viewtopic.php?pid=105568#p105568</guid>
		</item>
	</channel>
</rss>
