Sujet : Re: OT: Windows (Was: Re: Open Source does not mean easily
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.unix.programmerDate : 06. Jan 2025, 21:28:43
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vlhedq$1pgeu$6@dont-email.me>
References : 1 2 3 4 5 6 7 8 9
User-Agent : Pan/0.161 (Chasiv Yar; )
On Mon, 6 Jan 2025 17:53:20 -0000 (UTC), Kalevi Kolttonen wrote:
I am no expert, but I guess if you need to do async programming on
UNIX/Linux userspace, your best is to use POSIX Threads.
Threads are something you normally want to avoid, unless CPU usage is the
bottleneck in your application.
In the case where the limiting factor is I/O or network bandwidth, or a
GUI app waiting for user input, then async/await is a more convenient
paradigm.