Merge pull request #375 from cdburkard/patches/multi_core_rt

fix host --rt
This commit is contained in:
Brian O'Connor
2014-09-21 00:43:25 -07:00
+1 -1
View File
@@ -678,7 +678,7 @@ class CPULimitedHost( Host ):
"Internal method: return parameters for RT bandwidth"
pstr, qstr = 'rt_period_us', 'rt_runtime_us'
# RT uses wall clock time for period and quota
quota = int( self.period_us * f * numCores() )
quota = int( self.period_us * f )
return pstr, qstr, self.period_us, quota
def cfsInfo( self, f):