Thread overview
How does D lang handle multithreaded applications and static members of classes?
2 days ago
Inkrementator
1 day ago
Inkrementator
3 hours ago
bauss
2 hours ago
Andy Valencia
2 days ago

Say I have a static context stack in my class Context, will each new thread receive their own copy of the static member or do I have to account for multiple threads and do it myself?

2 days ago

On Tuesday, 1 April 2025 at 23:01:23 UTC, Daniel Donnelly, Jr. wrote:

>

Say I have a static context stack in my class Context, will each new thread receive their own copy of the static member or do I have to account for multiple threads and do it myself?

All global variables in D, including static class members, are thread local by default. You have to explicitly add the __gshared attribute to the static variable to make it truly global.

2 days ago

On Wednesday, 2 April 2025 at 08:33:05 UTC, Inkrementator wrote:

>

On Tuesday, 1 April 2025 at 23:01:23 UTC, Daniel Donnelly, Jr. wrote:

>

Say I have a static context stack in my class Context, will each new thread receive their own copy of the static member or do I have to account for multiple threads and do it myself?

All global variables in D, including static class members, are thread local by default. You have to explicitly add the __gshared attribute to the static variable to make it truly global.

Thats a good thing. The default is great for my app.

1 day ago

On Wednesday, 2 April 2025 at 08:38:32 UTC, Daniel Donnelly, Jr. wrote:

>

On Wednesday, 2 April 2025 at 08:33:05 UTC, Inkrementator wrote:

>

All global variables in D, including static class members, are thread local by default. You have to explicitly add the __gshared attribute to the static variable to make it truly global.

Addendum: When you need non-thread-local global variable, look into shared instead of __gshared to see if it meets your needs.

3 hours ago

On Thursday, 3 April 2025 at 18:45:50 UTC, Inkrementator wrote:

>

On Wednesday, 2 April 2025 at 08:38:32 UTC, Daniel Donnelly, Jr. wrote:

>

On Wednesday, 2 April 2025 at 08:33:05 UTC, Inkrementator wrote:

>

All global variables in D, including static class members, are thread local by default. You have to explicitly add the __gshared attribute to the static variable to make it truly global.

Addendum: When you need non-thread-local global variable, look into shared instead of __gshared to see if it meets your needs.

shared is broken however.

2 hours ago

On Friday, 4 April 2025 at 16:25:55 UTC, bauss wrote:

>

shared is broken however.

In what way? (Says the guy using it for his multi-threaded web service middleware.)

Andy