mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-08-03 17:26:08 -04:00
19 lines
494 B
C++
19 lines
494 B
C++
//=======================================================================
|
|
// Copyright Baptiste Wicht 2013-2018.
|
|
// Distributed under the terms of the MIT License.
|
|
// (See accompanying file LICENSE or copy at
|
|
// http://www.opensource.org/licenses/MIT)
|
|
//=======================================================================
|
|
|
|
#ifndef SCHEDULER_H
|
|
#define SCHEDULER_H
|
|
|
|
extern "C" {
|
|
|
|
uint64_t get_context_address(size_t pid);
|
|
uint64_t get_process_cr3(size_t pid);
|
|
|
|
} //end of extern "C"
|
|
|
|
#endif
|