Open jacquelinekay opened 9 years ago
there are a couple of open items with out descriptions. If those could be populated, even with something simple, it would help understand what is being worked on but is not yet in the public repos.
@BobDean: FYI, everything we're doing is in public repos, but perhaps on branches. But I take the point about having more descriptive tickets, as it gives more information about what remains to be done (which will hopefully make it easier for external contributors to pitch in).
@gerkey my "public" comment was due to reading tickets which seemed to relate to something on the developers machine, which I did not see when browsing the github source. So maybe the ticket progress/resolution had not been pushed to github yet. Which is fine, that's how software development goes. The description would let me fill in the gap while browsing.
I have a branch abstracting out allocations in services and clients, but I'm blocked by an issue with allocations from within the stdlib (std::promise
). I've asked it on Stack Overflow:
It turns out the issue with promise
will be fixed in gcc 5. Unless it gets backported to gcc 4.8 or 4.9, that means we won't be able to use std::promise
for RT services and clients until we start targeting 16.04.
Make the client/service pipeline safe for real-time execution. It has not yet been vetted for allocations, STL structures which malloc automatically, and nondeterministic blocking.
This will be required for RT-safe node lifecycle, since we plan to use services to transition between states in the lifecycle.
Service::handle_request
make_shared
fromasync_send_request
std::vector
andstd::map
(maybe just use a custom allocator)