I want to implement POSIX compliant microthreads in Linux environment. Basic idea is as follows:

  1. Using technique described here, assign new stack space for each fiber.
  2. Using setitimer, create timer that will send signals in constant time interval. Signal handler for this timer will act as a scheduler and switch between fibers.

The problem is, that doing longjmp in signal handler, won't terminate the handler, so kernel will wait for it's termination, instead for delivering new signals. This makes switching contexts impossible, because there are no signals to initiate the switches. One solution would be to unblock SIGALRM, so many signals can execute the handler at the same time, but this will cause race conditions problems.

What is the best and simplest way to implement preemptive microthreads ? All examples I found on Google were not preemptive.

link|improve this question
I don't see how you're going to accomplish this. Why do you want to? – Dark Falcon Jan 16 '10 at 17:26
feedback

1 Answer

up vote 1 down vote accepted

The solution is to use sigsetjmp / siglongjmp, intstead of setjmp/longjmp. sig* versions preserve signal masks :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.