mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 06:57:51 +00:00
6575856624
By splitting Session_policy into two classes, we make it more flexible. Originally, the constructor accepted solely an args string, which made it unusable for situations where we already have extracted the session label (e.g., stored in the session meta data of a server). Now, the extraction of the label from the args string is performed by the new Session_label class instead, which, in turn, can be passed to the constructor of Session_policy. This change causes a minor API change. The following code Session_policy policy(session_args); Must be turned into Session_label label(session_args); Session_policy policy(label); |
||
---|---|---|
.. | ||
app | ||
drivers/framebuffer/vesa | ||
lib | ||
server | ||
test |