1// Copyright 2016 The Fuchsia Authors
2// Copyright (c) 2008-2014 Travis Geiselbrecht
3//
4// Use of this source code is governed by a MIT-style
5// license that can be found in the LICENSE file or at
6// https://opensource.org/licenses/MIT
7
8#pragma once
9
10#ifndef __ASSEMBLER__
11#include <zircon/types.h> // for zx_status_t
12#endif
13
14#include <zircon/errors.h>
15
16// TODO: This is used primarily by class drivers which are obsolete.
17// Re-examine when those are removed.
18#define ZX_ERR_NOT_CONFIGURED (-501)
19
20// MOVE to kernel internal used for thread teardown
21#define ZX_ERR_INTERNAL_INTR_KILLED (-502)
22