コード例 #1
0
ファイル: P_RM.py プロジェクト: hsuanyulin/RTOS-coursera
 def init(self):
     PartitionedScheduler.init(self,
                               SchedulerInfo("simso.schedulers.RM_mono"))
コード例 #2
0
ファイル: P_RM.py プロジェクト: javipalanca/simso
 def init(self):
     PartitionedScheduler.init(
         self, SchedulerInfo("RM_mono", RM_mono))
コード例 #3
0
ファイル: LB_P_EDF.py プロジェクト: MaximeCheramy/simso
 def init(self):
     PartitionedScheduler.init(self, SchedulerInfo("simso.schedulers.EDF_mono"))
コード例 #4
0
 def init(self):
     PartitionedScheduler.init(self,
                               SchedulerInfo("simso.schedulers.EDF_mono"),
                               decreasing_worst_fit)
コード例 #5
0
ファイル: Fixed_PEDF.py プロジェクト: lapesd/simso-energy
 def init(self):
     PartitionedScheduler.init(self, SchedulerInfo("EDF_mono", EDF_mono))
コード例 #6
0
ファイル: P_EDF.py プロジェクト: MaximeCheramy/simso
 def init(self):
     PartitionedScheduler.init(
         self, SchedulerInfo("simso.schedulers.EDF_mono"), decreasing_first_fit)
コード例 #7
0
ファイル: Fixed_PEDF.py プロジェクト: javipalanca/simso
 def init(self):
     PartitionedScheduler.init(self, SchedulerInfo("EDF_mono", EDF_mono))
コード例 #8
0
ファイル: P_EDF_WF.py プロジェクト: steveeJ/simso
 def init(self):
     PartitionedScheduler.init(
         self, SchedulerInfo("EDF_mono", EDF_mono), decreasing_worst_fit)