-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9fc635b
commit e74ee70
Showing
20 changed files
with
43 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
2020-02-28 Gregory L. Lee <[email protected]> | ||
* : tag version 4.0.2 | ||
|
||
2018-12-26 Gregory L. Lee <[email protected]> | ||
* STATview.py : Added ability to generate folded trace file for flamegraph | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,9 +2,8 @@ | |
# Process this file with autoconf to produce a configure script. | ||
|
||
AC_PREREQ(2.59) | ||
#AC_INIT(STAT, 3.0.1, [email protected], The Stack Trace Analysis Tool, http://www.paradyn.org/STAT/STAT.html) | ||
AC_COPYRIGHT([Copyright (c) 2007-2018, Lawrence Livermore National Security, LLC.]) | ||
AC_INIT([STAT], [4.0.1]) | ||
AC_INIT([STAT], [4.0.2]) | ||
AC_CONFIG_AUX_DIR([config]) | ||
AC_CONFIG_SRCDIR([configure.ac]) | ||
AC_CONFIG_HEADER([config.h]) | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"] "Jesper Puge Nielsen"] | ||
__version_major__ = 4 | ||
__version_minor__ = 0 | ||
__version_revision__ = 1 | ||
__version_revision__ = 2 | ||
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__) | ||
|
||
import STATview | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"] | ||
__version_major__ = 4 | ||
__version_minor__ = 0 | ||
__version_revision__ = 1 | ||
__version_revision__ = 2 | ||
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__) | ||
|
||
import STAThelper | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"] | ||
__version_major__ = 4 | ||
__version_minor__ = 0 | ||
__version_revision__ = 1 | ||
__version_revision__ = 2 | ||
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__) | ||
|
||
import sys | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"] | ||
__version_major__ = 4 | ||
__version_minor__ = 0 | ||
__version_revision__ = 1 | ||
__version_revision__ = 2 | ||
__version__ = "%d.%d.%d" % (__version_major__, __version_minor__, __version_revision__) | ||
|
||
import sys | ||
|
@@ -67,7 +67,7 @@ def STATmain_main(in_arg_list, command=None): | |
args = None | ||
arg_parser = argparse.ArgumentParser(prog='STAT') | ||
subparsers = arg_parser.add_subparsers() | ||
|
||
|
||
if sys.argv[1] in ['gui', 'view'] and import_exception is not None: | ||
raise import_exception | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"] | ||
__version_major__ = 4 | ||
__version_minor__ = 0 | ||
__version_revision__ = 1 | ||
__version_revision__ = 2 | ||
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__) | ||
|
||
import _STATmerge | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"] | ||
__version_major__ = 4 | ||
__version_minor__ = 0 | ||
__version_revision__ = 1 | ||
__version_revision__ = 2 | ||
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__) | ||
|
||
import string | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"] | ||
__version_major__ = 4 | ||
__version_minor__ = 0 | ||
__version_revision__ = 1 | ||
__version_revision__ = 2 | ||
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__) | ||
|
||
import subprocess | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"] | ||
__version_major__ = 4 | ||
__version_minor__ = 0 | ||
__version_revision__ = 1 | ||
__version_revision__ = 2 | ||
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__) | ||
|
||
import sys | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ | |
__author__ = ["Dane Gardner", "Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"] | ||
__version_major__ = 4 | ||
__version_minor__ = 0 | ||
__version_revision__ = 1 | ||
__version_revision__ = 2 | ||
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__) | ||
|
||
############################################################################### | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"] | ||
__version_major__ = 4 | ||
__version_minor__ = 0 | ||
__version_revision__ = 1 | ||
__version_revision__ = 2 | ||
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__) | ||
|
||
import sys | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"] | ||
__version_major__ = 4 | ||
__version_minor__ = 0 | ||
__version_revision__ = 1 | ||
__version_revision__ = 2 | ||
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__) | ||
|
||
import subprocess | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"] | ||
__version_major__ = 4 | ||
__version_minor__ = 0 | ||
__version_revision__ = 1 | ||
__version_revision__ = 2 | ||
__version__ = "%d.%d.%d" %(__version_major__, __version_minor__, __version_revision__) | ||
|
||
import sys | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL LAWRENCE LIVERMORE NATIONAL SECURITY, LLC, THE U.S. DEPARTMENT OF ENERGY OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
""" | ||
__author__ = ["Gregory Lee <[email protected]>", "Dorian Arnold", "Matthew LeGendre", "Dong Ahn", "Bronis de Supinski", "Barton Miller", "Martin Schulz", "Niklas Nielson", "Nicklas Bo Jensen", "Jesper Nielson"] | ||
__version__ = "3.0.1" | ||
__version__ = "4.0.2" | ||
|
||
import sys | ||
import os | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters