17 lines
357 B
C
17 lines
357 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2015-2019, MICROTRUST Incorporated
|
|
* All Rights Reserved.
|
|
*
|
|
*/
|
|
|
|
#ifndef SCHED_STATUS_H
|
|
#define SCHED_STATUS_H
|
|
|
|
#define GLSCH_NONE (0x00)
|
|
#define GLSCH_LOW (0x01)
|
|
#define GLSCH_HIGH (0x02)
|
|
#define GLSCH_NEG (0x03)
|
|
#define GLSCH_FOR_SOTER (0x04)
|
|
|
|
#endif /* end of SCHED_STATUS_H */
|