You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In proped, I need to open a file dialog and keep redrawing the host program. As far as I know this isn't possible with fibers. Would it be possible to add a new function that would run the fiber in a new thread on OSes that support it?
The text was updated successfully, but these errors were encountered:
@marekmaskarinec Do you mean that the file dialog blocks the main application when run in the same OS thread? If so, then you cannot process them simultaneously with Umka fibers.
Introducing "true" OS threads in Umka would be very attractive for many reasons, including taking advantage of the CPU architectures. However, it would require much more synchronization efforts than the current "cooperative" multitasking needs.
In proped, I need to open a file dialog and keep redrawing the host program. As far as I know this isn't possible with fibers. Would it be possible to add a new function that would run the fiber in a new thread on OSes that support it?
The text was updated successfully, but these errors were encountered: