Cannot terminate an externally created thread ?

The VCL has a new TExternalThread class which derives from TThread

and can be attached to an existing Win32 thread object by filling in

the Handle and ThreadID properties using the GetCurrentThread() and GetCurrentThreadId()

Win32 API functions instead of creating a new thread object by calling the Win32 API CreateThread() function.

The error you are seeing can only occur

if you are calling Terminate() on a TExternalThread instance.

This is correct, the exception is raised from a Terminate() call.

How shoud TExternalThreads be terminated?

A regular TThread object that you create yourself is not a TExternalThread instance.

The error message you are seeing cannot be raised by your own custom threads,

unless you have corrupted memory that causes the TThread.FExternalThread member to become a non-zero value.

The only thing in the VCL that creates TExternalThread instances is the TThread.GetCurrentThread() method.

You can't terminate a TExternalThread object, by design, because it represents a thread that TExternalThread does not own.

The *only* way you can get that error is if you call Terminate() on a TThread object

whose ExternalThread property is true,

such as a TThread object that was obtained from the TThread.GetCurrentThread() method.

But another possibility would be if random memory got corrupted

and the TThread.FExternalThread member was an unsuspecting victim of that corruption.

Is that possible, that XE4 creates TExternalThread by default ?

No.

The *only* way TExternalThread is created is if the TThread.GetCurrentThread() method is called.

What is TExternalThread?

“Cannot terminate externally created thread” when terminating a thread-based timer

This happens half of the time when closing my application in

which I have placed a TLMDHiTimer on my form in design time, Enabled set to true.

In my OnFormClose event, I call MyLMDHiTimer.Enabled := false.

When this is called, I sometimes (about half of the time) get this exception.

I debugged and stepped into the call and found that it is line 246 in LMDTimer.pas that gives this error.

FThread.Terminate;

I am using the latest version of LMDTools.

I did a complete reinstall of LMD tools before the weekend and

have removed and re-added the component to the form properly as well.

From what I've found, this has something to do with TExternalThread,

but there's no documentation on it from Embarcadero and

I haven't found anything referencing it within the LMDTools source code.

Using fully updated RAD Studio 2010, Delphi 2010.

What really upsets me here is that there's no documentation whatsoever.

Google yeilds one result that actually talks about it, in which someone says that the error

is caused by trying to terminate a TExternalThread.

But looking at the source-code for this LMDHiTimer, not once does it aim to do anything but create a regular TThread.

The one google result I could find,

Thread: Cannot terminate an externally created thread?

on Embarcadero mentions using GetCurrentThread() and GetCurrentThreadId() to get the data necessary

to hook on to an existing thread, but the TLMDHiTimer does no such thing.

It just creates its own TThread descendant with its own Create() constructor

(overridden of course, and calls inherited at the start of the constructor)

So... What the heck is this TExternalThread?

Has anyone else run into this kind of exception?

And perhaps figured out a solution or workaround?

I've asked almost the exact same question to LMDTools' own support,

but it can't hurt to ask in multiple places.

Thank you in advance for any assistance.

TExternalThread wraps a thread that the Delphi RTL didn't create.

It might represent a thread belonging to the OS thread pool,

or maybe a thread created by another DLL in your program.

Since the thread is executing code that doesn't belong to the associated TExternalThread class,

the Terminate method has no way to notify the thread that you want it to stop.

A Delphi TThread object would set its Terminated property to True,

and the Execute method that got overridden would be expected to check that property periodically,

but since this thread is non-Delphi code, there is no Execute method,

and any Terminated property only came into existence after the thread code was already

written someplace else (not by overriding Execute).

The newsgroup thread suggests what's probably happening in your case:

... you have corrupted memory that causes the TThread.FExternalThread member to become a non-zero value.

It might be due to a bug in the component library, or it could be due to a bug in your own code.

You can use the debugger's data breakpoints to try to find out.

Set a breakpoint in the timer's thread's constructor.

When your program pauses there, use the "Add Breakpoint" command

on the Run menu to add a data breakpoint using the address of the new object's FExternalThread field.

Thereafter, if that field's value changes, the debugger will pause and show you what changed it.

(The data breakpoint will get reset each time you run the program

because the IDE assumes the object won't get allocated at the same address each time.)

I did as you said, but the only time this breakpoint is triggered is

upon the destruction of the component at the closing of the application.

I hit Shift+F7 to trace to the next step in the source code

(using debug dcus, so I get to see all the underlying delphi classes too)

and the call stack looks as follows: pastebin.org/88904

That looks to me like it's just doing the regular destruction of form components.

The call stack you show is not the destruction of the timer component.

It looks like it's the destruction of some form.

Was the FExternalThread field still False?

What new value did that memory contain when the data breakpoint triggered?

Yes, it looks to be the destruction of my application's main form.

The Timer component is placed on it, which makes me interpret the call stack

as the component being destroyed during the form's destruction

(the form should destroy all components on it during destruction, right?)

It seems that when I evaluate the value of the address of FExternalThread,

it always comes up as true, even when the delphi debugger itself says that it is false.

I write down @FExternalThread and do Boolean($Addess) in evaluation

and get 'true' even during creation when just FExternalThread returns 'false'. –

Actually, no, nevermind.

I managed to propertly retrieve the value at the time the data breakpoint is triggered

using PBoolean($address)^ and it is indeed set to true.

Edit: Nope, happens on other computers too so it's supposedly something in this app I guess?

Still, it's weird that the data breakpoint only triggers during destruction and

the data is at that time already altered.

So my value has been changed without my application changing it?

I'm gonna have to try running this app on another computer to see if the same error happens there too

Aaaaaaaaand I ran it on a different computer, no difference.

I just stepped through my code down to the very last line of my application's .dproj

and found that the value at the address of FExternalThread during the creation of the thread is false the entire time

Is there any chance the code might be trying to Terminate an already Destroyed TThread?

This could easily happen if you have FreeOnTerminate set.

I noticed your post while diagnosing a similar (opposite?) error,

"Cannot call Start on a running or suspended thread"

in the constructor of a component placed on the main form.

When I removed the Start(), that error was replaced by more telling errors,

e.g. "invalid pointer operation" and "access violation",

in the corresponding destructor.

The component was trying to manipulate its TThread object after the TThread was Freed,

thus leaving things up to Murphy's law.

When I fixed that, I was able to replace the Start() call without the "Cannot call Start" error returning.

By analogy, could your problem be that the address of your FExternalThread had been recycled

and clobbered before the destructor/Terminate call?

In our case, we had a buggy implementation of the Singleton Instance Pattern;

but again, FreeOnTerminate also seems like a likely suspect.

[FYI: I'm using I'm using C++ under RAD Studio XE]

This same problem drove me nuts for several months.

I went over my thread code in detail until I nearly went blind.

Finally I bought a good exception system (EurekaLog) and

it drove me directly to a third party component that was causing the problem.

This component, TAbLED, has a property to set it to flash with some sort of timing thread.

Setting it to not flash solved the problem.

Problem is that FExternalThread isn't initialized to false by default

when you're creating TThread instance.

So you can't guarantee what value be in this variable

(sometimes there can be true, sometimes false).

Yes, the FExternalThread member is initialized when a TThread object is created.

Being a TObject descendant, all of the TThread members are zero-initialized upon allocation

before the TThread constructor is then called.

That means FExternalThread is implicitally initialized to False.

The only way FExternalThreadcan be set to true is

if either an actual TExternalThread object is created (such as by the TThread.GetCurrentThread() class method),

or if memory is being corrupted by the app's code.

TExternalThread TThread -- Delphi -- Cannot terminate an externally created thread ?的更多相关文章

  1. Correct thread terminate and destroy

    http://www.techques.com/question/1-3788743/Correct-thread-destroy Hello At my form I create TFrame a ...

  2. TThread 线程的例子

    TThread 线程的例子 D:\Documents\Embarcadero\Studio\14.0\Samples\CPP\RTL\Threads TThread类   该线程类可以完成大多数的线程 ...

  3. Delphi thread exception mechanism

    http://www.techques.com/question/1-3627743/Delphi-thread-exception-mechanism i have a dilema on how ...

  4. Delphi 200X、XE中如何用并行实现循环的计算

    interface uses Classes, SysUtils; type TParallelProc = reference to procedure(i: Integer; ThreadID: ...

  5. Four Ways to Create a Thread

    Blaise Pascal Magazine Rerun #5: Four Ways to Create a Thread   This article was originally written ...

  6. Programming for thread in Java

    Programming for thread in Java Override Annotation package java.lang; import java.lang.annotation.El ...

  7. 多线程爬坑之路-Thread和Runable源码解析

    多线程:(百度百科借一波定义) 多线程(英语:multithreading),是指从软件或者硬件上实现多个线程并发执行的技术.具有多线程能力的计算机因有硬件支持而能够在同一时间执行多于一个线程,进而提 ...

  8. java多线程系类:JUC线程池:03之线程池原理(二)(转)

    概要 在前面一章"Java多线程系列--"JUC线程池"02之 线程池原理(一)"中介绍了线程池的数据结构,本章会通过分析线程池的源码,对线程池进行说明.内容包 ...

  9. Java多线程系列--“JUC线程池”03之 线程池原理(二)

    概要 在前面一章"Java多线程系列--“JUC线程池”02之 线程池原理(一)"中介绍了线程池的数据结构,本章会通过分析线程池的源码,对线程池进行说明.内容包括:线程池示例参考代 ...

随机推荐

  1. ios iPhone的一些基础知识,扫盲

    iPhone 4(2010 年):初始系统: iOS 4.0(GSM 版) (苹果第一次采用 iOS 为移动系统命名),iOS 4.2.2(CDMA 版)可以升级至:iOS 7.1.2 iPhone ...

  2. mipmap 目录和drawable 目录有什么区别

    Q :最近使用studio 发现drawle-hdpi 都没有了换成了mipmap-hdpi,这两个目录有什么区别呢,哪个比较好呢??? A: 我简单总结一下: 使用上没有任何区别,你把它当drawa ...

  3. python定义影像投影

    import os import arcgisscripting gp=arcgisscripting.create() coordsys=r"C:\Winx86\ArcGIS\Coordi ...

  4. [转]Linux文件权限详解

    转自:http://blog.chinaunix.net/uid-25052030-id-174343.html 在linux中的每一个文件或目录都包含有访问权限,这些访问权限决定了谁能访问和如何访问 ...

  5. 使用json格式的数据进行通信

    4 Java对象转换成JSON 4.1 问题 将Java对象转换成符合JSON格式的字符串,并测试. 4.2 方案 使用与json-lib.jar相关的jar文件完成类型的转换. 4.3 步骤 步骤一 ...

  6. Steam即将正式加入人民币支付(转)

    Valve将在2015年Q4和2016年Q1加入一批新的货币结算支持,其中包括了人民币,这意味着以后玩家将无需在跳转支付平台后并通过美元结算.这对中国玩家来说是喜是忧? 本文由爱玩网整理报道,转载请保 ...

  7. enter mysql

    1, mysql -u database username -p 2, database password 3, use (database name) -> change database 4 ...

  8. 在Chrome Console中加载jQuery

    var jq = document.createElement('script'); jq.src = "//ajax.googleapis.com/ajax/libs/jquery/1/j ...

  9. Ubuntu上用快捷键关闭没有响应的程序

    Linux 上有很多方法可以强制关闭无响应的程序,比如你可以通过按快捷键 Ctrl + Shift + T 来调出 Terminal 或者用 Ctrl + Shift + F1 进入 Console ...

  10. MySQL DATE_SUB() 函数

    定义和用法 DATE_SUB() 函数从日期减去指定的时间间隔. 语法 DATE_SUB(date,INTERVAL expr type) date 参数是合法的日期表达式.expr 参数是您希望添加 ...