Re: Help needed to extend the core.thread

2018-10-26 Thread Nicholas Wilson via Digitalmars-d-learn

On Friday, 26 October 2018 at 01:58:47 UTC, Heromyth wrote:

Maybe it's better to extend core.thread.Thread by inheriting it.
Am I right? Thanks!


Yes, see the example at 
https://dlang.org/phobos/core_thread.html#.Thread




Help needed to extend the core.thread

2018-10-25 Thread Heromyth via Digitalmars-d-learn
I want make some extensions to Thread in core.thread and wan. So 
I copy the whole of core.thread to another module named 
myext.thread.


Here are two errors occurred:
1)When building this module
In function `_D4myext6thread6Thread9termLocksFNiZv':
/home/dlang/UnitTest/source/myext/thread.d:1723: undefined 
reference to `_D4core4sync5mutex5Mutex6__dtorMFNiNeZv'


2)When running a simple demo with empty main().
Program exited with code -11

It seems it is bad idea to do so.
Maybe it's better to extend core.thread.Thread by inheriting it.
Am I right? Thanks!