Re: [Boost-users] suspendable/resumable/prioritizable task dispatcher

2022-08-28 Thread Gavin Lambert via Boost-users
On 29/08/2022 01:58, chris-boostusers wrote: I have a list of CPU-bound tasks I need to perform.  I'll list two of them here:    a) compute first zillion digits of pi (low priority)    b) add two plus two (high priority) I co_spawn (a).  Later, while (a) is running, I co_spawn (b).  (a) will

[Boost-users] suspendable/resumable/prioritizable task dispatcher

2022-08-28 Thread chris-boostusers--- via Boost-users
Hi, Unfortunately I don't have the vocabulary needed to ask this question, but hopefully I'll learn it here. Does Boost have something that will help me with this problem: I have a list of CPU-bound tasks I need to perform. I'll list two of them here: a) compute first zillion digits of