summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/schedule.h
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2022-09-02 22:16:26 +0200
committer hap <happppp@users.noreply.github.com>2022-09-02 22:16:26 +0200
commit184f4dcfa2c445f5fa90364ec24537e1c6e2e555 (patch)
treeacbadb08e4242f2c27b6d542628164d6946c8d81 /src/emu/schedule.h
parentcb510e940afbb1918beb56bdf40cc912aa842fa8 (diff)
schedule: rename add_scheduling_quantum to add_quantum, added perfect_quatum and use that for most cases of boost_interleave
Diffstat (limited to 'src/emu/schedule.h')
-rw-r--r--src/emu/schedule.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/schedule.h b/src/emu/schedule.h
index 926890c9e09..338560594d9 100644
--- a/src/emu/schedule.h
+++ b/src/emu/schedule.h
@@ -115,7 +115,8 @@ public:
void timeslice();
void abort_timeslice() noexcept;
void trigger(int trigid, const attotime &after = attotime::zero);
- void boost_interleave(const attotime &timeslice_time, const attotime &boost_duration);
+ void add_quantum(const attotime &quantum, const attotime &duration);
+ void perfect_quantum(const attotime &duration);
void suspend_resume_changed() { m_suspend_changes_pending = true; }
// timers, specified by callback/name
@@ -140,7 +141,6 @@ private:
void compute_perfect_interleave();
void rebuild_execute_list();
void apply_suspend_changes();
- void add_scheduling_quantum(const attotime &quantum, const attotime &duration);
// timer helpers
emu_timer &timer_list_insert(emu_timer &timer);