<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Серый форум &mdash; AHK: узнать заморожен(suspend) ли процесс]]></title>
	<link rel="self" href="https://forum.script-coding.com/extern.php?action=feed&amp;tid=11762&amp;type=atom" />
	<updated>2016-06-30T18:48:23Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.script-coding.com/viewtopic.php?id=11762</id>
		<entry>
			<title type="html"><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=105721#p105721" />
			<content type="html"><![CDATA[<p>Добрался до компьютера.<br />Спасибо огромное все работает <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /></p>]]></content>
			<author>
				<name><![CDATA[Dworkin]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27052</uri>
			</author>
			<updated>2016-06-30T18:48:23Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=105721#p105721</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=105600#p105600" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[Malcev]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=26930</uri>
			</author>
			<updated>2016-06-27T12:32:45Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=105600#p105600</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=105599#p105599" />
			<content type="html"><![CDATA[<p>Нет, он определяет только, заморожен ли один из его потоков.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2016-06-27T12:07:30Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=105599#p105599</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=105598#p105598" />
			<content type="html"><![CDATA[<p><strong>teadrinker</strong><br />Если в Process Eplorer&#039;e поставить любой процесс на паузу(на англ Suspend), то функция от <strong>Drugoy</strong> это определяет.</p>]]></content>
			<author>
				<name><![CDATA[Nikva]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27416</uri>
			</author>
			<updated>2016-06-27T12:03:55Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=105598#p105598</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=105591#p105591" />
			<content type="html"><![CDATA[<p>И что этот код выдаёт?</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2016-06-27T10:00:46Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=105591#p105591</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=105587#p105587" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[Drugoy]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27463</uri>
			</author>
			<updated>2016-06-27T09:07:52Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=105587#p105587</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=105576#p105576" />
			<content type="html"><![CDATA[<p>Да, я перепутал слово, но в русском чаще «поток» используется.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2016-06-26T15:07:16Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=105576#p105576</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=105573#p105573" />
			<content type="html"><![CDATA[<p>Не, ветка не подходит, они же из одного ствола идут, а здесь именно нитки, параллельно. <img src="//forum.script-coding.com/img/smilies/smile.png" width="15" height="15" /></p>]]></content>
			<author>
				<name><![CDATA[YMP]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=81</uri>
			</author>
			<updated>2016-06-26T14:57:30Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=105573#p105573</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=105570#p105570" />
			<content type="html"><![CDATA[<p>Процесс не бывает заморожен, бывает замороженной ветка. Гугл в помощь по запросу &quot;get thread suspend state&quot;.</p>]]></content>
			<author>
				<name><![CDATA[teadrinker]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=24515</uri>
			</author>
			<updated>2016-06-26T14:09:13Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=105570#p105570</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[AHK: узнать заморожен(suspend) ли процесс]]></title>
			<link rel="alternate" href="https://forum.script-coding.com/viewtopic.php?pid=105568#p105568" />
			<content type="html"><![CDATA[<p>Скажите пожалуйста можно ли как-то узнать заморожен(suspend) или завис процесс и как?</p>]]></content>
			<author>
				<name><![CDATA[Dworkin]]></name>
				<uri>https://forum.script-coding.com/profile.php?id=27052</uri>
			</author>
			<updated>2016-06-26T13:42:36Z</updated>
			<id>https://forum.script-coding.com/viewtopic.php?pid=105568#p105568</id>
		</entry>
</feed>
