mirror of
https://review.haiku-os.org/haiku
synced 2025-02-02 11:46:25 +01:00
f76bc433e1
* Not all of these headers are correct yet, just adding what's necessary to get things to compile for the time being.
33 lines
470 B
C
33 lines
470 B
C
/*
|
|
* Copyright 2012, Alex Smith, alex@alex-smith.me.uk.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _KERNEL_ARCH_X86_64_THREAD_H
|
|
#define _KERNEL_ARCH_X86_64_THREAD_H
|
|
|
|
|
|
#include <arch/cpu.h>
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
static inline Thread *
|
|
arch_thread_get_current_thread(void)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
static inline void
|
|
arch_thread_set_current_thread(Thread *t)
|
|
{
|
|
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _KERNEL_ARCH_X86_64_THREAD_H */
|