Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/threads.c

    r8fcbb4c r0c92c9f  
    2424
    2525extern "C" {
    26         #include <fenv.h>
    2726        #include <stddef.h>
    2827}
     
    9291        CtxSwitch( thrd_c->last->stack.context, thrd_c->stack.context );
    9392
    94         fenv_t envp;
    95         fegetenv( &envp );
    96         LIB_DEBUG_PRINTF("Thread : mxcsr %x\n", envp.__mxcsr);
    9793        LIB_DEBUG_PRINTF("Thread started : %p (t %p, c %p)\n", this, thrd_c, thrd_h);
    9894
     
    109105
    110106void yield( void ) {
    111         get_this_processor()->thread_action = Reschedule;
     107        thread_schedule( this_thread() );
    112108        suspend();
    113109}
Note: See TracChangeset for help on using the changeset viewer.