genode/repos/gems/recipes/raw/themed_wm/decorator_init.config
Norman Feske d3759811b6 os/session_policy: warn if no policy exists
The situation where a 'Session_policy' is constructed for a label with
no matching policy is in almost all cases a configuration problem.
A diagnostic message eases pin-pointing such mistaks. By adding the
message to the 'Session_policy', servers don't need to manually handle
the exception to provide diagnostic information. This simplifies the
server code in many components.
2019-01-30 13:49:55 +01:00

28 lines
931 B
Plaintext

<config>
<parent-provides>
<service name="ROM"/>
<service name="PD"/>
<service name="CPU"/>
<service name="LOG"/>
<service name="Nitpicker"/>
<service name="Timer"/>
<service name="Report"/>
</parent-provides>
<start name="decorator" caps="300">
<binary name="themed_decorator"/>
<resource name="RAM" quantum="8M"/>
<config>
<libc/>
<vfs> <tar name="plain_decorator_theme.tar"/> </vfs>
<default-policy/>
</config>
<route>
<service name="ROM" label="window_layout"> <parent label="window_layout"/> </service>
<service name="ROM" label="pointer"> <parent label="pointer"/> </service>
<service name="Report" label="decorator_margins"> <parent label="decorator_margins"/> </service>
<service name="Report" label="hover"> <parent label="hover"/> </service>
<any-service> <parent/> </any-service>
</route>
</start>
</config>