genode/repos/base-linux/src/test/lx_hybrid_errno/main.cc

84 lines
1.8 KiB
C++
Raw Normal View History

2012-10-24 18:24:17 +02:00
/*
* \brief Test for thread-local errno handling of hybrid Linux/Genode programs
* \author Norman Feske
* \date 2011-12-05
*/
/* Genode includes */
#include <base/component.h>
2012-10-24 18:24:17 +02:00
#include <base/thread.h>
#include <base/printf.h>
/* libc includes */
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
#include <stdlib.h>
2012-10-24 18:24:17 +02:00
enum { STACK_SIZE = 4096 };
struct Thread : Genode::Thread_deprecated<STACK_SIZE>
2012-10-24 18:24:17 +02:00
{
Genode::Lock &_barrier;
Thread(Genode::Lock &barrier)
: Genode::Thread_deprecated<STACK_SIZE>("stat"), _barrier(barrier) { start(); }
2012-10-24 18:24:17 +02:00
void entry()
{
/*
* Stat syscall should return with errno ENOENT
*/
struct stat buf;
int ret = stat("", &buf);
Genode::printf("thread: stat returned %d, errno=%d\n", ret, errno);
/*
* Let main thread procees
*/
_barrier.unlock();
}
};
static int exit_status;
static void exit_on_suspended() { exit(exit_status); }
Genode::size_t Component::stack_size() { return 16*1024*sizeof(long); }
struct Unexpected_errno_change { };
/*
* Component implements classical main function in construct.
*/
void Component::construct(Genode::Env &env)
2012-10-24 18:24:17 +02:00
{
Genode::printf("--- thread-local errno test ---\n");
static Genode::Lock barrier(Genode::Lock::LOCKED);
int const orig_errno = errno;
Genode::printf("main: before thread creation, errno=%d\n", orig_errno);
/* create thread, which modifies its thread-local errno value */
static Thread thread(barrier);
/* block until the thread performed a 'stat' syscall */
barrier.lock();
Genode::printf("main: after thread completed, errno=%d\n", errno);
if (orig_errno != errno) {
PERR("unexpected change of main thread's errno value");
throw Unexpected_errno_change();
2012-10-24 18:24:17 +02:00
}
Genode::printf("--- finished thread-local errno test ---\n");
exit_status = 0;
env.ep().schedule_suspend(exit_on_suspended, nullptr);
2012-10-24 18:24:17 +02:00
}