This commit also converts our own copyright headers to directly use SPDX, but leaves all other copyright header intact, only adding the SPDX ident. As far as possible this commit also merges multiple Data61 copyright statements/headers into one for consistency.
18 lines
382 B
C
18 lines
382 B
C
/*
|
|
* Copyright 2014, General Dynamics C4 Systems
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-only
|
|
*/
|
|
|
|
#ifndef __ARCH_KERNEL_THREAD_H
|
|
#define __ARCH_KERNEL_THREAD_H
|
|
|
|
#include <object.h>
|
|
#include <mode/kernel/thread.h>
|
|
|
|
void Arch_switchToThread(tcb_t *tcb);
|
|
void Arch_switchToIdleThread(void);
|
|
void Arch_configureIdleThread(tcb_t *tcb);
|
|
void Arch_activateIdleThread(tcb_t *tcb);
|
|
|
|
#endif
|