Thread overview | ||||||
---|---|---|---|---|---|---|
|
April 26, 2011 [D-runtime] [D-Programming-Language/druntime] f0e4cf: add DLL support for Windows Server 2003 and XP/64 | ||||
---|---|---|---|---|
| ||||
Branch: refs/heads/master Home: https://github.com/D-Programming-Language/druntime Commit: f0e4cff8e6f89b1d67d65302f5df572941568ef4 https://github.com/D-Programming-Language/druntime/commit/f0e4cff8e6f89b1d67d65302f5df572941568ef4 Author: Rainer Schuetze <r.sagitario at gmx.de> Date: 2011-04-25 (Mon, 25 Apr 2011) Changed paths: M src/core/sys/windows/_dll.d M src/core/sys/windows/_thread.d M src/core/thread.d Log Message: ----------- add DLL support for Windows Server 2003 and XP/64 fix crash in DLL on Windows/64 support creating thread inside DLL Commit: 3b75e61db816d831f379ded88963a8c869cd2f4b https://github.com/D-Programming-Language/druntime/commit/3b75e61db816d831f379ded88963a8c869cd2f4b Author: Sean Kelly <sean at invisibleduck.org> Date: 2011-04-26 (Tue, 26 Apr 2011) Changed paths: M src/core/sys/windows/_dll.d M src/core/sys/windows/_thread.d M src/core/thread.d Log Message: ----------- Merged pull request #13 from rainers/dll_fixes. add DLL support for Windows Server 2003 and XP/64 Compare: https://github.com/D-Programming-Language/druntime/compare/30c44e9...3b75e61 |
April 26, 2011 [D-runtime] [D-Programming-Language/druntime] f0e4cf: add DLL support for Windows Server 2003 and XP/64 | ||||
---|---|---|---|---|
| ||||
Posted in reply to noreply at github.com | Windows auto-tester shows some rather thorough brokenness.
On 4/26/2011 11:04 AM, noreply at github.com wrote:
> Branch: refs/heads/master
> Home: https://github.com/D-Programming-Language/druntime
>
> Commit: f0e4cff8e6f89b1d67d65302f5df572941568ef4
> https://github.com/D-Programming-Language/druntime/commit/f0e4cff8e6f89b1d67d65302f5df572941568ef4
> Author: Rainer Schuetze <r.sagitario at gmx.de>
> Date: 2011-04-25 (Mon, 25 Apr 2011)
>
> Changed paths:
> M src/core/sys/windows/_dll.d
> M src/core/sys/windows/_thread.d
> M src/core/thread.d
>
> Log Message:
> -----------
> add DLL support for Windows Server 2003 and XP/64
> fix crash in DLL on Windows/64
> support creating thread inside DLL
>
>
> Commit: 3b75e61db816d831f379ded88963a8c869cd2f4b
> https://github.com/D-Programming-Language/druntime/commit/3b75e61db816d831f379ded88963a8c869cd2f4b
> Author: Sean Kelly <sean at invisibleduck.org>
> Date: 2011-04-26 (Tue, 26 Apr 2011)
>
> Changed paths:
> M src/core/sys/windows/_dll.d
> M src/core/sys/windows/_thread.d
> M src/core/thread.d
>
> Log Message:
> -----------
> Merged pull request #13 from rainers/dll_fixes.
>
> add DLL support for Windows Server 2003 and XP/64
>
>
> Compare: https://github.com/D-Programming-Language/druntime/compare/30c44e9...3b75e61
> _______________________________________________
> D-runtime mailing list
> D-runtime at puremagic.com
> http://lists.puremagic.com/mailman/listinfo/d-runtime
|
April 27, 2011 [D-runtime] [D-Programming-Language/druntime] f0e4cf: add DLL support for Windows Server 2003 and XP/64 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Brad Roberts | It seems, core/thread.d still imports core.sys.windows._thread instead of threadaux. The error does not show up on a local build unless the old di files in the import folder are deleted.
Brad Roberts wrote:
> Windows auto-tester shows some rather thorough brokenness.
>
> On 4/26/2011 11:04 AM, noreply at github.com wrote:
>> Branch: refs/heads/master
>> Home: https://github.com/D-Programming-Language/druntime
>>
>> Commit: f0e4cff8e6f89b1d67d65302f5df572941568ef4
>> https://github.com/D-Programming-Language/druntime/commit/f0e4cff8e6f89b1d67d65302f5df572941568ef4
>> Author: Rainer Schuetze <r.sagitario at gmx.de>
>> Date: 2011-04-25 (Mon, 25 Apr 2011)
>>
>> Changed paths:
>> M src/core/sys/windows/_dll.d
>> M src/core/sys/windows/_thread.d
>> M src/core/thread.d
>>
>> Log Message:
>> -----------
>> add DLL support for Windows Server 2003 and XP/64
>> fix crash in DLL on Windows/64
>> support creating thread inside DLL
>>
>>
>> Commit: 3b75e61db816d831f379ded88963a8c869cd2f4b
>> https://github.com/D-Programming-Language/druntime/commit/3b75e61db816d831f379ded88963a8c869cd2f4b
>> Author: Sean Kelly <sean at invisibleduck.org>
>> Date: 2011-04-26 (Tue, 26 Apr 2011)
>>
>> Changed paths:
>> M src/core/sys/windows/_dll.d
>> M src/core/sys/windows/_thread.d
>> M src/core/thread.d
>>
>> Log Message:
>> -----------
>> Merged pull request #13 from rainers/dll_fixes.
>>
>> add DLL support for Windows Server 2003 and XP/64
>>
>>
>> Compare: https://github.com/D-Programming-Language/druntime/compare/30c44e9...3b75e61
>> _______________________________________________
>> D-runtime mailing list
>> D-runtime at puremagic.com
>> http://lists.puremagic.com/mailman/listinfo/d-runtime
|
April 27, 2011 [D-runtime] [D-Programming-Language/druntime] f0e4cf: add DLL support for Windows Server 2003 and XP/64 | ||||
---|---|---|---|---|
| ||||
Posted in reply to Rainer Schuetze | Darnit. I'll fix presently.
Sent from my iPhone
On Apr 26, 2011, at 11:06 PM, Rainer Schuetze <r.sagitario at gmx.de> wrote:
> It seems, core/thread.d still imports core.sys.windows._thread instead of threadaux. The error does not show up on a local build unless the old di files in the import folder are deleted.
>
> Brad Roberts wrote:
>> Windows auto-tester shows some rather thorough brokenness. On 4/26/2011 11:04 AM, noreply at github.com wrote:
>>> Branch: refs/heads/master
>>> Home: https://github.com/D-Programming-Language/druntime
>>>
>>> Commit: f0e4cff8e6f89b1d67d65302f5df572941568ef4
>>> https://github.com/D-Programming-Language/druntime/commit/f0e4cff8e6f89b1d67d65302f5df572941568ef4
>>> Author: Rainer Schuetze <r.sagitario at gmx.de>
>>> Date: 2011-04-25 (Mon, 25 Apr 2011)
>>>
>>> Changed paths:
>>> M src/core/sys/windows/_dll.d
>>> M src/core/sys/windows/_thread.d
>>> M src/core/thread.d
>>>
>>> Log Message:
>>> -----------
>>> add DLL support for Windows Server 2003 and XP/64
>>> fix crash in DLL on Windows/64
>>> support creating thread inside DLL
>>>
>>>
>>> Commit: 3b75e61db816d831f379ded88963a8c869cd2f4b
>>> https://github.com/D-Programming-Language/druntime/commit/3b75e61db816d831f379ded88963a8c869cd2f4b
>>> Author: Sean Kelly <sean at invisibleduck.org>
>>> Date: 2011-04-26 (Tue, 26 Apr 2011)
>>>
>>> Changed paths:
>>> M src/core/sys/windows/_dll.d
>>> M src/core/sys/windows/_thread.d
>>> M src/core/thread.d
>>>
>>> Log Message:
>>> -----------
>>> Merged pull request #13 from rainers/dll_fixes.
>>>
>>> add DLL support for Windows Server 2003 and XP/64
>>>
>>>
>>> Compare: https://github.com/D-Programming-Language/druntime/compare/30c44e9...3b75e61
>>> _______________________________________________
>>> D-runtime mailing list
>>> D-runtime at puremagic.com
>>> http://lists.puremagic.com/mailman/listinfo/d-runtime
>
> _______________________________________________
> D-runtime mailing list
> D-runtime at puremagic.com
> http://lists.puremagic.com/mailman/listinfo/d-runtime
|
Copyright © 1999-2021 by the D Language Foundation