blob: 0b873d81de9d48f2603b51f44c1cfa9f47c8efc6 [file] [log] [blame]
Andrew Walbran42d89e72019-11-27 12:40:10 +00001/*
2 * Copyright 2019 The Hafnium Authors.
3 *
Andrew Walbrane959ec12020-06-17 15:01:09 +01004 * Use of this source code is governed by a BSD-style
5 * license that can be found in the LICENSE file or at
6 * https://opensource.org/licenses/BSD-3-Clause.
Andrew Walbran42d89e72019-11-27 12:40:10 +00007 */
8
9#pragma once
10
11/**
12 * Disables interrupts.
13 */
14void arch_irq_disable(void);
15
16/**
17 * Enables interrupts.
18 */
19void arch_irq_enable(void);