User loginNavigation |
RAII and Async Stackless FibersI like RAII for exception safe programming, and as a general model for resource management. In another thread it was mentioned that this does not work well with an asynchronous stackless fibre model (where stackless might mean cactus stacks). As I like the fibre model for managing concurrency as well, because you don't need to have threads waiting on high latency services, I wanted to continue that discussion, focusing on: is RAII really a problem with these kind of fibres? What is the core problem? How could a new language combine these features in a way that avoids the problem (if the problem is a significant one)? I don't really see what the problem is, as in simple terms RAII is attaching a resource (be it memory, file-handle, or any other) to a handle that is placed on a stack. The resource is allocated when the handle is created, and freed when the handle is destroyed. The handle is uncopyable, so it can only be assigned using move-semantics. Naively this would seem to work fine with cactus stacks. By Keean Schupke at 2015-08-11 08:38 | LtU Forum | previous forum topic | next forum topic | other blogs | 4064 reads
|
Browse archives
Active forum topics |
Recent comments
23 weeks 1 hour ago
23 weeks 5 hours ago
23 weeks 5 hours ago
45 weeks 1 day ago
49 weeks 3 days ago
51 weeks 13 hours ago
51 weeks 13 hours ago
1 year 1 week ago
1 year 6 weeks ago
1 year 6 weeks ago