mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
ab017607a2
Fixes #3418
36 lines
886 B
Plaintext
36 lines
886 B
Plaintext
<runtime ram="32M" caps="1000" binary="init">
|
|
|
|
<events>
|
|
<timeout meaning="failed" sec="20" />
|
|
<log meaning="succeeded">
|
|
[init -> test-tls] main initial: x: -1, y: 0
|
|
[init -> test-tls] thread 0 initial: x: -1, y: 0
|
|
[init -> test-tls] thread 0 : x: 1, y: 2
|
|
[init -> test-tls] thread 1 initial: x: -1, y: 0
|
|
[init -> test-tls] thread 1 : x: 3, y: 4
|
|
[init -> test-tls] main : x: 5, y: 6
|
|
</log>
|
|
</events>
|
|
|
|
<content>
|
|
<rom label="ld.lib.so"/>
|
|
<rom label="test-tls"/>
|
|
</content>
|
|
|
|
<config>
|
|
<parent-provides>
|
|
<service name="LOG"/>
|
|
<service name="PD"/>
|
|
<service name="CPU"/>
|
|
<service name="ROM"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> </any-service>
|
|
</default-route>
|
|
<default caps="50"/>
|
|
<start name="test-tls">
|
|
<resource name="RAM" quantum="10M"/>
|
|
</start>
|
|
</config>
|
|
</runtime>
|