Newer
Older
UbixOS / Dump / hybos / lib / x86 / disable.c
@Christopher W. Olsen Christopher W. Olsen on 5 Nov 2018 301 bytes Sync
/*****************************************************************************
*****************************************************************************/
unsigned disable(void)
{
	unsigned ret_val;

	__asm__ __volatile__("pushfl\n"
		"popl %0\n"
		"cli"
		: "=a"(ret_val)
		:);
	return ret_val;
}