mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 13:47:56 +00:00
3f611fe00d
Defer destruction of threads which tries to self-destruct. Check an perform cleanup of such threads during pthread_cancel and pthread_create. Issue #1687
41 lines
833 B
Plaintext
41 lines
833 B
Plaintext
build "core init test/pthread"
|
|
|
|
create_boot_directory
|
|
|
|
install_config {
|
|
<config>
|
|
<parent-provides>
|
|
<service name="ROM"/>
|
|
<service name="RAM"/>
|
|
<service name="IRQ"/>
|
|
<service name="IO_MEM"/>
|
|
<service name="IO_PORT"/>
|
|
<service name="CAP"/>
|
|
<service name="PD"/>
|
|
<service name="RM"/>
|
|
<service name="CPU"/>
|
|
<service name="LOG"/>
|
|
</parent-provides>
|
|
<default-route>
|
|
<any-service> <parent/> <any-child/> </any-service>
|
|
</default-route>
|
|
<start name="test-pthread">
|
|
<resource name="RAM" quantum="64M"/>
|
|
<config>
|
|
<libc stdout="/dev/log">
|
|
<vfs> <dir name="dev"> <log/> </dir> </vfs>
|
|
</libc>
|
|
</config>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
build_boot_image {
|
|
core init test-pthread
|
|
ld.lib.so libc.lib.so pthread.lib.so
|
|
}
|
|
|
|
append qemu_args " -nographic -m 128 "
|
|
|
|
run_genode_until {--- returning from main ---.*\n} 10
|