Home | Info | Community | Development | myReactOS | Contact Us
[inline, static]
Definition at line 584 of file minidump.c.
Referenced by dump_system_info().
{ #if defined(__GNUC__) && defined(__i386__) unsigned int f1, f2; __asm__("pushfl\n\t" "pushfl\n\t" "popl %0\n\t" "movl %0,%1\n\t" "xorl %2,%0\n\t" "pushl %0\n\t" "popfl\n\t" "pushfl\n\t" "popl %0\n\t" "popfl" : "=&r" (f1), "=&r" (f2) : "ir" (0x00200000)); return ((f1^f2) & 0x00200000) != 0; #else return 0; #endif }