aboutsummaryrefslogtreecommitdiff
path: root/i686/sys/control.h
blob: 7dde3c8fb0e7fb0d37216a01af4bffbbeb3ee783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once

static inline void
abort()
{
  /* Symbol h is already defined?
asm volatile(R"(cli
h: hlt
jmp h)");
*/
  asm volatile(R"(cli
hlt)");
}

static inline void
enable_interrupts()
{
  asm volatile("sti");
}

static inline void
disable_interrupts()
{
  asm volatile("cli");
}