Revision b55c22c6

b/cpus.c
867 867

  
868 868
void qemu_cpu_kick_self(void)
869 869
{
870
#ifndef _WIN32
870 871
    assert(cpu_single_env);
871 872

  
872 873
    if (!cpu_single_env->thread_kicked) {
873 874
        qemu_thread_signal(cpu_single_env->thread, SIG_IPI);
874 875
        cpu_single_env->thread_kicked = true;
875 876
    }
877
#else
878
    abort();
879
#endif
876 880
}
877 881

  
878 882
int qemu_cpu_is_self(void *_env)

Also available in: Unified diff