Intial commit.

Chris's intial work on the extenstions.
This commit is contained in:
Dhananjay Balan
2013-06-17 22:40:17 +05:30
committed by Chris Johns
parent 911e71038c
commit 56a70aec55
7 changed files with 1005 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
if __name__ == "__main__":
import sys
import os.path
sys.path.append(os.path.dirname(__file__))
import chains
import rtems
import classic
import objects
import threads
reload(chains)
reload(rtems)
reload(classic)
reload(objects)
reload(threads)
print 'RTEMS GDB Support loaded'