2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2018-11-08 00:15:02 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Assertions.h>
|
2019-07-19 18:21:13 +03:00
|
|
|
#include <AK/Function.h>
|
|
|
|
#include <AK/IntrusiveList.h>
|
2020-02-16 03:27:42 +03:00
|
|
|
#include <AK/Types.h>
|
2020-06-29 00:34:31 +03:00
|
|
|
#include <Kernel/SpinLock.h>
|
2020-11-15 21:58:19 +03:00
|
|
|
#include <Kernel/Time/TimeManagement.h>
|
2020-03-14 01:59:45 +03:00
|
|
|
#include <Kernel/UnixTypes.h>
|
2020-02-16 03:27:42 +03:00
|
|
|
|
|
|
|
namespace Kernel {
|
2018-11-08 02:24:59 +03:00
|
|
|
|
2018-11-08 00:15:02 +03:00
|
|
|
class Process;
|
2019-03-24 00:03:17 +03:00
|
|
|
class Thread;
|
2019-12-01 21:17:17 +03:00
|
|
|
class WaitQueue;
|
2020-02-16 02:15:37 +03:00
|
|
|
struct RegisterState;
|
2019-08-07 21:43:54 +03:00
|
|
|
struct SchedulerData;
|
2018-11-08 00:15:02 +03:00
|
|
|
|
2019-03-24 00:03:17 +03:00
|
|
|
extern Thread* g_finalizer;
|
2019-12-01 21:17:17 +03:00
|
|
|
extern WaitQueue* g_finalizer_wait_queue;
|
2020-06-27 22:42:28 +03:00
|
|
|
extern Atomic<bool> g_finalizer_has_work;
|
2019-08-07 21:43:54 +03:00
|
|
|
extern SchedulerData* g_scheduler_data;
|
2020-06-29 00:34:31 +03:00
|
|
|
extern RecursiveSpinLock g_scheduler_lock;
|
2018-11-08 00:15:02 +03:00
|
|
|
|
|
|
|
class Scheduler {
|
|
|
|
public:
|
2020-07-06 16:27:22 +03:00
|
|
|
static void initialize();
|
|
|
|
static Thread* create_ap_idle_thread(u32 cpu);
|
|
|
|
static void set_idle_thread(Thread* idle_thread);
|
2020-03-09 17:24:29 +03:00
|
|
|
static void timer_tick(const RegisterState&);
|
2020-06-27 22:42:28 +03:00
|
|
|
[[noreturn]] static void start();
|
2018-11-08 00:15:02 +03:00
|
|
|
static bool pick_next();
|
|
|
|
static bool yield();
|
2020-12-01 05:04:36 +03:00
|
|
|
static void yield_from_critical();
|
2020-09-15 22:53:15 +03:00
|
|
|
static bool donate_to_and_switch(Thread*, const char* reason);
|
2020-09-27 17:53:35 +03:00
|
|
|
static bool donate_to(RefPtr<Thread>&, const char* reason);
|
2020-07-05 23:32:07 +03:00
|
|
|
static bool context_switch(Thread*);
|
2020-12-08 07:29:41 +03:00
|
|
|
static void enter_current(Thread& prev_thread, bool is_first);
|
2020-08-01 23:37:40 +03:00
|
|
|
static void leave_on_first_switch(u32 flags);
|
|
|
|
static void prepare_after_exec();
|
|
|
|
static void prepare_for_idle_loop();
|
2019-02-04 12:28:12 +03:00
|
|
|
static Process* colonel();
|
2019-05-15 22:40:41 +03:00
|
|
|
static void beep();
|
2020-11-17 06:51:34 +03:00
|
|
|
static void idle_loop(void*);
|
2020-06-27 22:42:28 +03:00
|
|
|
static void invoke_async();
|
2020-07-05 23:32:07 +03:00
|
|
|
static void notify_finalizer();
|
2019-05-28 12:53:16 +03:00
|
|
|
|
2019-07-19 18:21:13 +03:00
|
|
|
template<typename Callback>
|
2019-08-07 21:43:54 +03:00
|
|
|
static inline IterationDecision for_each_runnable(Callback);
|
2019-07-19 18:21:13 +03:00
|
|
|
|
|
|
|
template<typename Callback>
|
2019-08-07 21:43:54 +03:00
|
|
|
static inline IterationDecision for_each_nonrunnable(Callback);
|
2019-07-19 18:21:13 +03:00
|
|
|
|
|
|
|
static void init_thread(Thread& thread);
|
2018-11-08 00:15:02 +03:00
|
|
|
};
|
2020-02-16 03:27:42 +03:00
|
|
|
|
|
|
|
}
|