aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJavi Merino <javi.merino@arm.com>2016-01-05 15:01:56 +0000
committerJavi Merino <javi.merino@arm.com>2016-01-05 15:07:46 +0000
commit4ec4aee55dbd4045cfb6a2fe099615a569ce7ff7 (patch)
treee13e905cfcda3eb5e20e60ffcf97aaf5db6614ac
parent3fb959cce49adea597c588e89679b32cdb649fb6 (diff)
downloadtrappy-4ec4aee55dbd4045cfb6a2fe099615a569ce7ff7.tar.gz
trappy: update copyright to 2016
-rw-r--r--doc/api_reference/conf.py2
-rwxr-xr-xscripts/publish_interactive_plots.py2
-rw-r--r--setup.py2
-rw-r--r--tests/test_baretrace.py2
-rw-r--r--tests/test_base.py2
-rw-r--r--tests/test_constraint.py2
-rw-r--r--tests/test_copyright.py2
-rw-r--r--tests/test_cpu_power.py2
-rw-r--r--tests/test_devfreq.py2
-rw-r--r--tests/test_duplicates.py2
-rw-r--r--tests/test_dynamic.py2
-rw-r--r--tests/test_ftrace.py2
-rw-r--r--tests/test_pid.py2
-rw-r--r--tests/test_plot_utils.py2
-rw-r--r--tests/test_plotter.py2
-rw-r--r--tests/test_results.py2
-rw-r--r--tests/test_sched.py2
-rw-r--r--tests/test_stats.py2
-rw-r--r--tests/test_stats_grammar.py2
-rw-r--r--tests/test_thermal.py2
-rw-r--r--tests/test_trappy.py2
-rw-r--r--tests/test_utils.py2
-rw-r--r--tests/test_wa_sysfs_extractor.py2
-rw-r--r--tests/utils_tests.py2
-rw-r--r--trappy/__init__.py2
-rw-r--r--trappy/bare_trace.py2
-rw-r--r--trappy/base.py2
-rw-r--r--trappy/compare_runs.py2
-rw-r--r--trappy/cpu_power.py2
-rw-r--r--trappy/devfreq_power.py2
-rw-r--r--trappy/dynamic.py2
-rw-r--r--trappy/ftrace.py2
-rw-r--r--trappy/pid_controller.py2
-rw-r--r--trappy/plot_utils.py2
-rw-r--r--trappy/plotter/AbstractDataPlotter.py2
-rw-r--r--trappy/plotter/AttrConf.py2
-rw-r--r--trappy/plotter/ColorMap.py2
-rw-r--r--trappy/plotter/Constraint.py2
-rw-r--r--trappy/plotter/EventPlot.py2
-rw-r--r--trappy/plotter/ILinePlot.py2
-rw-r--r--trappy/plotter/ILinePlotGen.py2
-rw-r--r--trappy/plotter/IPythonConf.py2
-rw-r--r--trappy/plotter/LinePlot.py2
-rw-r--r--trappy/plotter/PlotLayout.py2
-rw-r--r--trappy/plotter/Utils.py2
-rw-r--r--trappy/plotter/__init__.py2
-rw-r--r--trappy/plotter/css/EventPlot.css2
-rw-r--r--trappy/plotter/js/EventPlot.js2
-rw-r--r--trappy/plotter/js/ILinePlot.js2
-rw-r--r--trappy/sched.py2
-rw-r--r--trappy/stats/Aggregator.py2
-rw-r--r--trappy/stats/Correlator.py2
-rw-r--r--trappy/stats/Indexer.py2
-rw-r--r--trappy/stats/StatConf.py2
-rw-r--r--trappy/stats/Topology.py2
-rw-r--r--trappy/stats/Trigger.py2
-rw-r--r--trappy/stats/__init__.py2
-rw-r--r--trappy/stats/grammar.py2
-rw-r--r--trappy/thermal.py2
-rw-r--r--trappy/utils.py2
-rw-r--r--trappy/wa/__init__.py2
-rw-r--r--trappy/wa/results.py2
-rw-r--r--trappy/wa/sysfs_extractor.py2
63 files changed, 63 insertions, 63 deletions
diff --git a/doc/api_reference/conf.py b/doc/api_reference/conf.py
index 67e6235..8d48c87 100644
--- a/doc/api_reference/conf.py
+++ b/doc/api_reference/conf.py
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/scripts/publish_interactive_plots.py b/scripts/publish_interactive_plots.py
index cdd31fe..75a2667 100755
--- a/scripts/publish_interactive_plots.py
+++ b/scripts/publish_interactive_plots.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/setup.py b/setup.py
index 7ed3f14..82b839d 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_baretrace.py b/tests/test_baretrace.py
index 4692d0a..2746007 100644
--- a/tests/test_baretrace.py
+++ b/tests/test_baretrace.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_base.py b/tests/test_base.py
index a0dba9d..446b010 100644
--- a/tests/test_base.py
+++ b/tests/test_base.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_constraint.py b/tests/test_constraint.py
index 20b5525..c92d0b3 100644
--- a/tests/test_constraint.py
+++ b/tests/test_constraint.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_copyright.py b/tests/test_copyright.py
index b79a77d..8e78432 100644
--- a/tests/test_copyright.py
+++ b/tests/test_copyright.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_cpu_power.py b/tests/test_cpu_power.py
index f3bb8dc..f8d4641 100644
--- a/tests/test_cpu_power.py
+++ b/tests/test_cpu_power.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_devfreq.py b/tests/test_devfreq.py
index d0c0124..619998c 100644
--- a/tests/test_devfreq.py
+++ b/tests/test_devfreq.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_duplicates.py b/tests/test_duplicates.py
index f8e4ae5..7819587 100644
--- a/tests/test_duplicates.py
+++ b/tests/test_duplicates.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_dynamic.py b/tests/test_dynamic.py
index 0d9d7a1..43c7128 100644
--- a/tests/test_dynamic.py
+++ b/tests/test_dynamic.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_ftrace.py b/tests/test_ftrace.py
index 0feeb55..762d8d2 100644
--- a/tests/test_ftrace.py
+++ b/tests/test_ftrace.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_pid.py b/tests/test_pid.py
index 41ddb17..8e47d6f 100644
--- a/tests/test_pid.py
+++ b/tests/test_pid.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_plot_utils.py b/tests/test_plot_utils.py
index ac8a6c9..d5a6def 100644
--- a/tests/test_plot_utils.py
+++ b/tests/test_plot_utils.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_plotter.py b/tests/test_plotter.py
index 4fd6318..63595eb 100644
--- a/tests/test_plotter.py
+++ b/tests/test_plotter.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_results.py b/tests/test_results.py
index b5d5daf..ed113f3 100644
--- a/tests/test_results.py
+++ b/tests/test_results.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_sched.py b/tests/test_sched.py
index d370dd7..56b047f 100644
--- a/tests/test_sched.py
+++ b/tests/test_sched.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_stats.py b/tests/test_stats.py
index 31431fc..bbcc995 100644
--- a/tests/test_stats.py
+++ b/tests/test_stats.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_stats_grammar.py b/tests/test_stats_grammar.py
index 8244ea5..d9b0954 100644
--- a/tests/test_stats_grammar.py
+++ b/tests/test_stats_grammar.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_thermal.py b/tests/test_thermal.py
index e234bef..b3a5003 100644
--- a/tests/test_thermal.py
+++ b/tests/test_thermal.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_trappy.py b/tests/test_trappy.py
index c0b8367..53e0afe 100644
--- a/tests/test_trappy.py
+++ b/tests/test_trappy.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_utils.py b/tests/test_utils.py
index ca91e42..46c372b 100644
--- a/tests/test_utils.py
+++ b/tests/test_utils.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/test_wa_sysfs_extractor.py b/tests/test_wa_sysfs_extractor.py
index 3ebec67..69f0e3d 100644
--- a/tests/test_wa_sysfs_extractor.py
+++ b/tests/test_wa_sysfs_extractor.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/tests/utils_tests.py b/tests/utils_tests.py
index 99441e9..8223b24 100644
--- a/tests/utils_tests.py
+++ b/tests/utils_tests.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/__init__.py b/trappy/__init__.py
index 219a440..5861b5d 100644
--- a/trappy/__init__.py
+++ b/trappy/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/bare_trace.py b/trappy/bare_trace.py
index 92c04f3..2c7ca1a 100644
--- a/trappy/bare_trace.py
+++ b/trappy/bare_trace.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/base.py b/trappy/base.py
index 8afef45..d2da652 100644
--- a/trappy/base.py
+++ b/trappy/base.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/compare_runs.py b/trappy/compare_runs.py
index f765656..6878968 100644
--- a/trappy/compare_runs.py
+++ b/trappy/compare_runs.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/cpu_power.py b/trappy/cpu_power.py
index a4d6c22..1ebf0a0 100644
--- a/trappy/cpu_power.py
+++ b/trappy/cpu_power.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/devfreq_power.py b/trappy/devfreq_power.py
index 7ebb106..2775ed2 100644
--- a/trappy/devfreq_power.py
+++ b/trappy/devfreq_power.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/dynamic.py b/trappy/dynamic.py
index 92003e8..eb90401 100644
--- a/trappy/dynamic.py
+++ b/trappy/dynamic.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/ftrace.py b/trappy/ftrace.py
index 94273aa..e137c11 100644
--- a/trappy/ftrace.py
+++ b/trappy/ftrace.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/pid_controller.py b/trappy/pid_controller.py
index e33b2e2..a3c71ae 100644
--- a/trappy/pid_controller.py
+++ b/trappy/pid_controller.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/plot_utils.py b/trappy/plot_utils.py
index 6235146..c7054ab 100644
--- a/trappy/plot_utils.py
+++ b/trappy/plot_utils.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/plotter/AbstractDataPlotter.py b/trappy/plotter/AbstractDataPlotter.py
index 965d179..81c7643 100644
--- a/trappy/plotter/AbstractDataPlotter.py
+++ b/trappy/plotter/AbstractDataPlotter.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/plotter/AttrConf.py b/trappy/plotter/AttrConf.py
index 64e3b8e..908a5b3 100644
--- a/trappy/plotter/AttrConf.py
+++ b/trappy/plotter/AttrConf.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/plotter/ColorMap.py b/trappy/plotter/ColorMap.py
index 42c0bbf..7308c05 100644
--- a/trappy/plotter/ColorMap.py
+++ b/trappy/plotter/ColorMap.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/plotter/Constraint.py b/trappy/plotter/Constraint.py
index 94d520a..e5294f8 100644
--- a/trappy/plotter/Constraint.py
+++ b/trappy/plotter/Constraint.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/plotter/EventPlot.py b/trappy/plotter/EventPlot.py
index 805afcf..5edf500 100644
--- a/trappy/plotter/EventPlot.py
+++ b/trappy/plotter/EventPlot.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/plotter/ILinePlot.py b/trappy/plotter/ILinePlot.py
index c4cdbec..fa30397 100644
--- a/trappy/plotter/ILinePlot.py
+++ b/trappy/plotter/ILinePlot.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/plotter/ILinePlotGen.py b/trappy/plotter/ILinePlotGen.py
index 9e06d04..b4ddc83 100644
--- a/trappy/plotter/ILinePlotGen.py
+++ b/trappy/plotter/ILinePlotGen.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/plotter/IPythonConf.py b/trappy/plotter/IPythonConf.py
index 0ad9077..e7d582b 100644
--- a/trappy/plotter/IPythonConf.py
+++ b/trappy/plotter/IPythonConf.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/plotter/LinePlot.py b/trappy/plotter/LinePlot.py
index 0cfc36f..b4e1c89 100644
--- a/trappy/plotter/LinePlot.py
+++ b/trappy/plotter/LinePlot.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/plotter/PlotLayout.py b/trappy/plotter/PlotLayout.py
index 0f84c77..70453bd 100644
--- a/trappy/plotter/PlotLayout.py
+++ b/trappy/plotter/PlotLayout.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/plotter/Utils.py b/trappy/plotter/Utils.py
index 9b518db..e36ac60 100644
--- a/trappy/plotter/Utils.py
+++ b/trappy/plotter/Utils.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/plotter/__init__.py b/trappy/plotter/__init__.py
index 63cb5fc..88a607b 100644
--- a/trappy/plotter/__init__.py
+++ b/trappy/plotter/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/plotter/css/EventPlot.css b/trappy/plotter/css/EventPlot.css
index 0aa9d5f..d165124 100644
--- a/trappy/plotter/css/EventPlot.css
+++ b/trappy/plotter/css/EventPlot.css
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2015 ARM Limited
+ * Copyright 2015-2016 ARM Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/trappy/plotter/js/EventPlot.js b/trappy/plotter/js/EventPlot.js
index aa7f0af..1acb3c3 100644
--- a/trappy/plotter/js/EventPlot.js
+++ b/trappy/plotter/js/EventPlot.js
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2015 ARM Limited
+ * Copyright 2015-2016 ARM Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/trappy/plotter/js/ILinePlot.js b/trappy/plotter/js/ILinePlot.js
index 78d8131..7a1c35c 100644
--- a/trappy/plotter/js/ILinePlot.js
+++ b/trappy/plotter/js/ILinePlot.js
@@ -1,5 +1,5 @@
/*
- * Copyright 2015-2015 ARM Limited
+ * Copyright 2015-2016 ARM Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/trappy/sched.py b/trappy/sched.py
index bb351e1..c7cfd21 100644
--- a/trappy/sched.py
+++ b/trappy/sched.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/stats/Aggregator.py b/trappy/stats/Aggregator.py
index 9f3b7a7..e2f3a2e 100644
--- a/trappy/stats/Aggregator.py
+++ b/trappy/stats/Aggregator.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/stats/Correlator.py b/trappy/stats/Correlator.py
index 6972b7e..9a0a8fc 100644
--- a/trappy/stats/Correlator.py
+++ b/trappy/stats/Correlator.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/stats/Indexer.py b/trappy/stats/Indexer.py
index 7b2ef61..acf5ec9 100644
--- a/trappy/stats/Indexer.py
+++ b/trappy/stats/Indexer.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/stats/StatConf.py b/trappy/stats/StatConf.py
index b815f52..061fa0a 100644
--- a/trappy/stats/StatConf.py
+++ b/trappy/stats/StatConf.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/stats/Topology.py b/trappy/stats/Topology.py
index b5f0776..2eb281b 100644
--- a/trappy/stats/Topology.py
+++ b/trappy/stats/Topology.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/stats/Trigger.py b/trappy/stats/Trigger.py
index eed9cc1..08f08c4 100644
--- a/trappy/stats/Trigger.py
+++ b/trappy/stats/Trigger.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/stats/__init__.py b/trappy/stats/__init__.py
index af6269b..ae37990 100644
--- a/trappy/stats/__init__.py
+++ b/trappy/stats/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/stats/grammar.py b/trappy/stats/grammar.py
index e097c98..3211cf6 100644
--- a/trappy/stats/grammar.py
+++ b/trappy/stats/grammar.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/thermal.py b/trappy/thermal.py
index 5b439d0..1cc26b1 100644
--- a/trappy/thermal.py
+++ b/trappy/thermal.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/utils.py b/trappy/utils.py
index aee151c..4240704 100644
--- a/trappy/utils.py
+++ b/trappy/utils.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/wa/__init__.py b/trappy/wa/__init__.py
index f194387..1271a1a 100644
--- a/trappy/wa/__init__.py
+++ b/trappy/wa/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/wa/results.py b/trappy/wa/results.py
index 1ec4d18..0beb915 100644
--- a/trappy/wa/results.py
+++ b/trappy/wa/results.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/trappy/wa/sysfs_extractor.py b/trappy/wa/sysfs_extractor.py
index bc8b2d1..fbffa6f 100644
--- a/trappy/wa/sysfs_extractor.py
+++ b/trappy/wa/sysfs_extractor.py
@@ -1,4 +1,4 @@
-# Copyright 2015-2015 ARM Limited
+# Copyright 2015-2016 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.