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?
Thread overview | ||||||||
---|---|---|---|---|---|---|---|---|
|
2 days ago How does D lang handle multithreaded applications and static members of classes? | ||||
---|---|---|---|---|
| ||||
2 days ago Re: How does D lang handle multithreaded applications and static members of classes? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Daniel Donnelly, Jr. | 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 |
2 days ago Re: How does D lang handle multithreaded applications and static members of classes? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Inkrementator | 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 Thats a good thing. The default is great for my app. |
1 day ago Re: How does D lang handle multithreaded applications and static members of classes? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Daniel Donnelly, Jr. | 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 Addendum: When you need non-thread-local global variable, look into |
3 hours ago Re: How does D lang handle multithreaded applications and static members of classes? | ||||
---|---|---|---|---|
| ||||
Posted in reply to Inkrementator | 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 Addendum: When you need non-thread-local global variable, look into shared is broken however. |
2 hours ago Re: How does D lang handle multithreaded applications and static members of classes? | ||||
---|---|---|---|---|
| ||||
Posted in reply to bauss | 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 |