mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
ff3e08f9ea
This patch implements a subset of the POSIX thread and semaphore functions in the 'pthread' library. Fixes #174.
36 lines
733 B
Plaintext
36 lines
733 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="2M"/>
|
|
</start>
|
|
</config>
|
|
}
|
|
|
|
build_boot_image {
|
|
core init test-pthread
|
|
ld.lib.so libc.lib.so libc_log.lib.so pthread.lib.so
|
|
}
|
|
|
|
append qemu_args " -nographic -m 64 "
|
|
|
|
run_genode_until "--- returning from main ---" 10
|