Re: Druntime without pthreads?

2020-10-21 Thread Denis Feklushkin via Digitalmars-d-learn
On Wednesday, 21 October 2020 at 16:04:20 UTC, Denis Feklushkin wrote: On Tuesday, 20 October 2020 at 16:58:12 UTC, Severin Teona wrote: My curiosity is what would change if I removed from the druntime everything that has to do with mutexes As I remember, your plan is to use some type of

Re: Druntime without pthreads?

2020-10-21 Thread Denis Feklushkin via Digitalmars-d-learn
On Tuesday, 20 October 2020 at 16:58:12 UTC, Severin Teona wrote: My curiosity is what would change if I removed from the druntime everything that has to do with mutexes or threads. Nothing if you don't plan to use multithreading. I temporary disabled threading and appropriate unittests from

Re: Druntime without pthreads?

2020-10-21 Thread Jacob Carlborg via Digitalmars-d-learn
On Tuesday, 20 October 2020 at 16:58:12 UTC, Severin Teona wrote: Hi guys. I have a curiosity, regarding [1] - I had encountered some "undefined reference" errors when trying to link the druntime (compiled for an embedded architecture) without some implementation of the POSIX thread calls

Re: Druntime without pthreads?

2020-10-20 Thread IGotD- via Digitalmars-d-learn
On Tuesday, 20 October 2020 at 16:58:12 UTC, Severin Teona wrote: Hi guys. I have a curiosity, regarding [1] - I had encountered some "undefined reference" errors when trying to link the druntime (compiled for an embedded architecture) without some implementation of the POSIX thread calls

Re: Druntime without pthreads?

2020-10-20 Thread sarn via Digitalmars-d-learn
On Tuesday, 20 October 2020 at 16:58:12 UTC, Severin Teona wrote: Hi guys. I have a curiosity, regarding [1] - I had encountered some "undefined reference" errors when trying to link the druntime (compiled for an embedded architecture) without some implementation of the POSIX thread calls

Druntime without pthreads?

2020-10-20 Thread Severin Teona via Digitalmars-d-learn
Hi guys. I have a curiosity, regarding [1] - I had encountered some "undefined reference" errors when trying to link the druntime (compiled for an embedded architecture) without some implementation of the POSIX thread calls (and other stuff too). My curiosity is what would change if I