summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0da2579)
raw | patch | inline | side by side (parent: 0da2579)
author | Chris Ring <cring@ti.com> | |
Tue, 12 Mar 2013 23:37:42 +0000 (16:37 -0700) | ||
committer | Chris Ring <cring@ti.com> | |
Wed, 13 Mar 2013 15:49:42 +0000 (08:49 -0700) |
XDC 3.25 includes device support we will need, as well as support for CCS 5.4,
a key development environment. Unfortunately, there is a small compatibility
break between XDC 3.24 and 3.25 for the [rare] modules that implement
xdc.runtime.ISystemSupport. Unfortunately, ti.trace.SysMin is susceptible to
this break, and requires a slight change.
Prior to this commit, we must use XDC 3.24. After this commit, we must use
XDC 3.25.
a key development environment. Unfortunately, there is a small compatibility
break between XDC 3.24 and 3.25 for the [rare] modules that implement
xdc.runtime.ISystemSupport. Unfortunately, ti.trace.SysMin is susceptible to
this break, and requires a slight change.
Prior to this commit, we must use XDC 3.24. After this commit, we must use
XDC 3.25.
packages/ti/trace/SysMin.c | patch | blob | history | |
packages/ti/trace/SysMin.xdc | patch | blob | history |
index d7ed81cd773a9fa5b49e90e743f844cb0f88abb3..339ce46c80b3dc2026836a74ade585e205586d97 100644 (file)
/*
* ======== SysMin_abort ========
*/
-Void SysMin_abort(String str)
+Void SysMin_abort(CString str)
{
Char ch;
index d3adb871798cf5faed8a8d4b42859a174401660a..86f4e962217b27778ba6f9b0c107acab16d8e765 100644 (file)
*
* @see ISystemSupport#abort
*/
- override Void abort(String str);
+ override Void abort(CString str);
/*!
* ======== exit ========