Skip to content
Snippets Groups Projects
Commit 73ef3e9a authored by Brian O'Connor's avatar Brian O'Connor
Browse files

Merge pull request #375 from cdburkard/patches/multi_core_rt

fix host --rt 
parents 55ef99b6 04c1c098
No related branches found
No related tags found
No related merge requests found
......@@ -678,7 +678,7 @@ def rtInfo( self, f ):
"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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment