summaryrefslogtreecommitdiff
path: root/rtemstoolkit
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2019-05-30 20:22:28 +1000
committerChris Johns <chrisj@rtems.org>2019-06-11 11:00:30 +1000
commit9b153bc20fa5d0df40eee06f0700e20bd4ccec84 (patch)
tree922b35835c2091193be74206306b267ccad594ef /rtemstoolkit
parent7568306148a5597472312884804339224e236989 (diff)
rtemstoolkit/host: Make the load() public.
Diffstat (limited to 'rtemstoolkit')
-rw-r--r--rtemstoolkit/host.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/rtemstoolkit/host.py b/rtemstoolkit/host.py
index 5319c92..01aae07 100644
--- a/rtemstoolkit/host.py
+++ b/rtemstoolkit/host.py
@@ -42,7 +42,7 @@ is_windows = False
platform = None
name = None
-def _load():
+def load():
global is_windows
global platform
@@ -83,11 +83,11 @@ def _load():
raise error.general('failed to load %s host support' % (name))
def cpus():
- _load()
+ load()
return platform.cpus()
def overrides():
- _load()
+ load()
return platform.overrides()
def label(mode = 'all'):
@@ -107,7 +107,7 @@ def label(mode = 'all'):
if __name__ == '__main__':
import pprint
print('Python\'s OS name: %s' % (os.name))
- _load()
+ load()
print('Name : %s' % (name))
if is_windows:
status = 'Yes'