Hi Adam!
Is there a way to use them with Linux kernel modules, too?
You have to export these functions. Examples are in arch/l4/kernel/main.c at the end. Ok, thank you. Attached you find a patch for adding the symbols. Could you include it to the CVS L4Linux tree?
Best regards Oskar. -- Sirrix AG security technologies - http://www.sirrix.com Oskar Senft eMail: o.senft@sirrix.com Tel +49 (681) 936 251 - 119 Fax +49 (681) 936 251 - 519 get public key from keyserver Fingerprint 6FC6 3E44 233F 7F4B 33C7 A8D0 2EDA F3BA B5A3 0BA4 This message may contain confidential and/or privileged information. If you are not the addressee, you must not use, copy, disclose or take any action based on this message or any information herein. If you have received this message in error, please advise the sender immediately by reply e-mail and delete this message. --- l4linux-2.6/arch/l4/kernel/main.c.orig 2006-08-02 17:11:58.000000000 +0200 +++ l4linux-2.6/arch/l4/kernel/main.c 2006-08-09 13:39:20.000000000 +0200 @@ -1667,4 +1667,12 @@ char l4env_ipc_errstrings[0]; EXPORT_SYMBOL(l4env_ipc_errstrings); +#include <l4/semaphore/semaphore.h> +EXPORT_SYMBOL(l4semaphore_restart_up); +EXPORT_SYMBOL(l4semaphore_restart_down); +EXPORT_SYMBOL(l4semaphore_thread_l4_id); + +#include <l4/thread/thread.h> +EXPORT_SYMBOL(l4thread_myself); + #endif /* ARCH_x86 */