From: Julian Seward Date: Fri, 18 Oct 2013 14:27:36 +0000 (+0000) Subject: Update copyright dates (20XY-2012 ==> 20XY-2013) X-Git-Tag: svn/VALGRIND_3_9_0~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbf9b63605776a66a27b8e1dd85b969f5ae13af4;p=thirdparty%2Fvalgrind.git Update copyright dates (20XY-2012 ==> 20XY-2013) git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13658 --- diff --git a/auxprogs/change-copyright-year b/auxprogs/change-copyright-year index d6a50dfd9a..4c6f90a376 100755 --- a/auxprogs/change-copyright-year +++ b/auxprogs/change-copyright-year @@ -3,7 +3,7 @@ # Script updates the copyright year in every file in Valgrind that contains # a copyright notice. Assumes they're all in the same format: # -# "Copyright (C) 20xy-2011" +# "Copyright (C) 20xy-2012" # # where x can be 0 or 1 and y can be anything. # To use: @@ -18,12 +18,12 @@ # change them. for i in `find . -name '*.[chS]' -type f -not -path '*.svn\/*'` ; do echo $i - perl -p -e 's/Copyright \(C\) 20([0-1])([0-9])-2011/Copyright (C) 20$1$2-2012/' < $i > tmp.$$ + perl -p -e 's/Copyright \(C\) 20([0-1])([0-9])-2012/Copyright (C) 20$1$2-2013/' < $i > tmp.$$ mv tmp.$$ $i # Copyright IBM Corp. 2010-2011 - perl -p -e 's/Copyright IBM Corp. 20([0-1])([0-9])-2011/Copyright IBM Corp. 20$1$2-2012/' < $i > tmp.$$ + perl -p -e 's/Copyright IBM Corp. 20([0-1])([0-9])-2012/Copyright IBM Corp. 20$1$2-2013/' < $i > tmp.$$ mv tmp.$$ $i done diff --git a/auxprogs/valgrind-listener.c b/auxprogs/valgrind-listener.c index 881098b576..15b23abd94 100644 --- a/auxprogs/valgrind-listener.c +++ b/auxprogs/valgrind-listener.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/cachegrind/cg_arch.c b/cachegrind/cg_arch.c index 18d2912e8c..3098ad8ebd 100644 --- a/cachegrind/cg_arch.c +++ b/cachegrind/cg_arch.c @@ -6,7 +6,7 @@ This file is part of Cachegrind, a Valgrind tool for cache profiling programs. - Copyright (C) 2011-2012 Nicholas Nethercote + Copyright (C) 2011-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/cachegrind/cg_arch.h b/cachegrind/cg_arch.h index cd0b74ffff..7f9430bb9b 100644 --- a/cachegrind/cg_arch.h +++ b/cachegrind/cg_arch.h @@ -7,7 +7,7 @@ This file is part of Cachegrind, a Valgrind tool for cache profiling programs. - Copyright (C) 2002-2012 Nicholas Nethercote + Copyright (C) 2002-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/cachegrind/cg_branchpred.c b/cachegrind/cg_branchpred.c index 0324d31ac7..18e16b9d4e 100644 --- a/cachegrind/cg_branchpred.c +++ b/cachegrind/cg_branchpred.c @@ -7,7 +7,7 @@ This file is part of Cachegrind, a Valgrind tool for cache profiling programs. - Copyright (C) 2002-2012 Nicholas Nethercote + Copyright (C) 2002-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/cachegrind/cg_main.c b/cachegrind/cg_main.c index d1368757d8..bdfda33c99 100644 --- a/cachegrind/cg_main.c +++ b/cachegrind/cg_main.c @@ -8,7 +8,7 @@ This file is part of Cachegrind, a Valgrind tool for cache profiling programs. - Copyright (C) 2002-2012 Nicholas Nethercote + Copyright (C) 2002-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or @@ -1821,7 +1821,7 @@ static void cg_pre_clo_init(void) VG_(details_version) (NULL); VG_(details_description) ("a cache and branch-prediction profiler"); VG_(details_copyright_author)( - "Copyright (C) 2002-2012, and GNU GPL'd, by Nicholas Nethercote et al."); + "Copyright (C) 2002-2013, and GNU GPL'd, by Nicholas Nethercote et al."); VG_(details_bug_reports_to) (VG_BUGS_TO); VG_(details_avg_translation_sizeB) ( 500 ); diff --git a/cachegrind/cg_merge.c b/cachegrind/cg_merge.c index a3f6761295..70c0087921 100644 --- a/cachegrind/cg_merge.c +++ b/cachegrind/cg_merge.c @@ -8,7 +8,7 @@ This file is part of Cachegrind, a Valgrind tool for cache profiling programs. - Copyright (C) 2002-2012 Nicholas Nethercote + Copyright (C) 2002-2013 Nicholas Nethercote njn@valgrind.org AVL tree code derived from diff --git a/cachegrind/cg_sim.c b/cachegrind/cg_sim.c index 8d17a6874d..31494f6daa 100644 --- a/cachegrind/cg_sim.c +++ b/cachegrind/cg_sim.c @@ -7,7 +7,7 @@ This file is part of Cachegrind, a Valgrind tool for cache profiling programs. - Copyright (C) 2002-2012 Nicholas Nethercote + Copyright (C) 2002-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/callgrind/bb.c b/callgrind/bb.c index 58de2c239d..c4c9247d03 100644 --- a/callgrind/bb.c +++ b/callgrind/bb.c @@ -6,7 +6,7 @@ /* This file is part of Callgrind, a Valgrind tool for call tracing. - Copyright (C) 2002-2012, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) + Copyright (C) 2002-2013, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/callgrind/bbcc.c b/callgrind/bbcc.c index bd8508bc4c..7696645b37 100644 --- a/callgrind/bbcc.c +++ b/callgrind/bbcc.c @@ -6,7 +6,7 @@ /* This file is part of Callgrind, a Valgrind tool for call tracing. - Copyright (C) 2002-2012, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) + Copyright (C) 2002-2013, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/callgrind/callgrind.h b/callgrind/callgrind.h index 196c5a4f70..1079090c14 100644 --- a/callgrind/callgrind.h +++ b/callgrind/callgrind.h @@ -13,7 +13,7 @@ This file is part of callgrind, a valgrind tool for cache simulation and call tree tracing. - Copyright (C) 2003-2012 Josef Weidendorfer. All rights reserved. + Copyright (C) 2003-2013 Josef Weidendorfer. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/callgrind/callstack.c b/callgrind/callstack.c index 95c2278526..97ecb5a23b 100644 --- a/callgrind/callstack.c +++ b/callgrind/callstack.c @@ -6,7 +6,7 @@ /* This file is part of Callgrind, a Valgrind tool for call tracing. - Copyright (C) 2002-2012, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) + Copyright (C) 2002-2013, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/callgrind/clo.c b/callgrind/clo.c index c35cbf387e..5ee62e6ce2 100644 --- a/callgrind/clo.c +++ b/callgrind/clo.c @@ -2,10 +2,10 @@ This file is part of Callgrind, a Valgrind tool for call graph profiling programs. - Copyright (C) 2002-2012, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) + Copyright (C) 2002-2013, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) This tool is derived from and contains lot of code from Cachegrind - Copyright (C) 2002-2012 Nicholas Nethercote (njn@valgrind.org) + Copyright (C) 2002-2013 Nicholas Nethercote (njn@valgrind.org) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/callgrind/context.c b/callgrind/context.c index be6be7053c..342f5c9524 100644 --- a/callgrind/context.c +++ b/callgrind/context.c @@ -6,7 +6,7 @@ /* This file is part of Callgrind, a Valgrind tool for call tracing. - Copyright (C) 2002-2012, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) + Copyright (C) 2002-2013, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/callgrind/costs.c b/callgrind/costs.c index 32cdfbf917..35c451f3e4 100644 --- a/callgrind/costs.c +++ b/callgrind/costs.c @@ -6,7 +6,7 @@ /* This file is part of Callgrind, a Valgrind tool for call tracing. - Copyright (C) 2002-2012, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) + Copyright (C) 2002-2013, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/callgrind/debug.c b/callgrind/debug.c index 67d083b61d..8876636103 100644 --- a/callgrind/debug.c +++ b/callgrind/debug.c @@ -2,10 +2,10 @@ This file is part of Callgrind, a Valgrind tool for call graph profiling programs. - Copyright (C) 2002-2012, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) + Copyright (C) 2002-2013, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) This tool is derived from and contains lot of code from Cachegrind - Copyright (C) 2002-2012 Nicholas Nethercote (njn@valgrind.org) + Copyright (C) 2002-2013 Nicholas Nethercote (njn@valgrind.org) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/callgrind/dump.c b/callgrind/dump.c index 0f38e099af..f124b10e48 100644 --- a/callgrind/dump.c +++ b/callgrind/dump.c @@ -6,7 +6,7 @@ /* This file is part of Callgrind, a Valgrind tool for call tracing. - Copyright (C) 2002-2012, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) + Copyright (C) 2002-2013, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/callgrind/events.c b/callgrind/events.c index 0193d2a450..d7338b405c 100644 --- a/callgrind/events.c +++ b/callgrind/events.c @@ -6,7 +6,7 @@ /* This file is part of Callgrind, a Valgrind tool for call tracing. - Copyright (C) 2002-2012, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) + Copyright (C) 2002-2013, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/callgrind/events.h b/callgrind/events.h index 37bc7cc9e0..fcd025187a 100644 --- a/callgrind/events.h +++ b/callgrind/events.h @@ -6,7 +6,7 @@ /* This file is part of Callgrind, a Valgrind tool for call tracing. - Copyright (C) 2002-2012, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) + Copyright (C) 2002-2013, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/callgrind/fn.c b/callgrind/fn.c index 983b122466..d602ac0e4c 100644 --- a/callgrind/fn.c +++ b/callgrind/fn.c @@ -6,7 +6,7 @@ /* This file is part of Callgrind, a Valgrind tool for call tracing. - Copyright (C) 2002-2012, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) + Copyright (C) 2002-2013, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/callgrind/jumps.c b/callgrind/jumps.c index 633152ea3d..afe56dc77c 100644 --- a/callgrind/jumps.c +++ b/callgrind/jumps.c @@ -6,7 +6,7 @@ /* This file is part of Callgrind, a Valgrind tool for call tracing. - Copyright (C) 2002-2012, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) + Copyright (C) 2002-2013, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/callgrind/main.c b/callgrind/main.c index 66c381f5e1..f9dcd84d3d 100644 --- a/callgrind/main.c +++ b/callgrind/main.c @@ -8,10 +8,10 @@ This file is part of Callgrind, a Valgrind tool for call graph profiling programs. - Copyright (C) 2002-2012, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) + Copyright (C) 2002-2013, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) This tool is derived from and contains code from Cachegrind - Copyright (C) 2002-2012 Nicholas Nethercote (njn@valgrind.org) + Copyright (C) 2002-2013 Nicholas Nethercote (njn@valgrind.org) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -2026,7 +2026,7 @@ void CLG_(pre_clo_init)(void) VG_(details_name) ("Callgrind"); VG_(details_version) (NULL); VG_(details_description) ("a call-graph generating cache profiler"); - VG_(details_copyright_author)("Copyright (C) 2002-2012, and GNU GPL'd, " + VG_(details_copyright_author)("Copyright (C) 2002-2013, and GNU GPL'd, " "by Josef Weidendorfer et al."); VG_(details_bug_reports_to) (VG_BUGS_TO); VG_(details_avg_translation_sizeB) ( 500 ); diff --git a/callgrind/sim.c b/callgrind/sim.c index d2f9a4ce77..5e72e1c90f 100644 --- a/callgrind/sim.c +++ b/callgrind/sim.c @@ -7,10 +7,10 @@ This file is part of Callgrind, a Valgrind tool for call graph profiling programs. - Copyright (C) 2003-2012, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) + Copyright (C) 2003-2013, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) This tool is derived from and contains code from Cachegrind - Copyright (C) 2002-2012 Nicholas Nethercote (njn@valgrind.org) + Copyright (C) 2002-2013 Nicholas Nethercote (njn@valgrind.org) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/callgrind/threads.c b/callgrind/threads.c index 98d9385c30..9c432718c0 100644 --- a/callgrind/threads.c +++ b/callgrind/threads.c @@ -6,7 +6,7 @@ /* This file is part of Callgrind, a Valgrind tool for call tracing. - Copyright (C) 2002-2012, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) + Copyright (C) 2002-2013, Josef Weidendorfer (Josef.Weidendorfer@gmx.de) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/launcher-darwin.c b/coregrind/launcher-darwin.c index 8f8c608fff..8e3d63ea83 100644 --- a/coregrind/launcher-darwin.c +++ b/coregrind/launcher-darwin.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/launcher-linux.c b/coregrind/launcher-linux.c index 591bced3cc..8384564dba 100644 --- a/coregrind/launcher-linux.c +++ b/coregrind/launcher-linux.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_aspacehl.c b/coregrind/m_aspacehl.c index e4ae2d131e..b5e296b871 100644 --- a/coregrind/m_aspacehl.c +++ b/coregrind/m_aspacehl.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2006-2012 Julian Seward + Copyright (C) 2006-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_aspacemgr/aspacemgr-common.c b/coregrind/m_aspacemgr/aspacemgr-common.c index 228ba8fe33..7ffb78dffa 100644 --- a/coregrind/m_aspacemgr/aspacemgr-common.c +++ b/coregrind/m_aspacemgr/aspacemgr-common.c @@ -9,7 +9,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2006-2012 OpenWorks LLP + Copyright (C) 2006-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_aspacemgr/aspacemgr-linux.c b/coregrind/m_aspacemgr/aspacemgr-linux.c index 3d57de63d7..ee3a4f5c06 100644 --- a/coregrind/m_aspacemgr/aspacemgr-linux.c +++ b/coregrind/m_aspacemgr/aspacemgr-linux.c @@ -10,7 +10,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_aspacemgr/priv_aspacemgr.h b/coregrind/m_aspacemgr/priv_aspacemgr.h index cb48bdce31..4ef4323ac5 100644 --- a/coregrind/m_aspacemgr/priv_aspacemgr.h +++ b/coregrind/m_aspacemgr/priv_aspacemgr.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2006-2012 OpenWorks LLP + Copyright (C) 2006-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_cache.c b/coregrind/m_cache.c index 077fc0a9a5..ddec8af6d4 100644 --- a/coregrind/m_cache.c +++ b/coregrind/m_cache.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2002-2012 Nicholas Nethercote + Copyright (C) 2002-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_clientstate.c b/coregrind/m_clientstate.c index b7fa34ca63..718d3cd386 100644 --- a/coregrind/m_clientstate.c +++ b/coregrind/m_clientstate.c @@ -9,7 +9,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_commandline.c b/coregrind/m_commandline.c index 6d5871af82..37161b56ab 100644 --- a/coregrind/m_commandline.c +++ b/coregrind/m_commandline.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_coredump/coredump-elf.c b/coregrind/m_coredump/coredump-elf.c index ebf31d0dbe..98d855bbf0 100644 --- a/coregrind/m_coredump/coredump-elf.c +++ b/coregrind/m_coredump/coredump-elf.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_cpuid.S b/coregrind/m_cpuid.S index 6ffa6e0f1c..1473cadb73 100644 --- a/coregrind/m_cpuid.S +++ b/coregrind/m_cpuid.S @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debugger.c b/coregrind/m_debugger.c index 1c967ef8f9..f4a6183b2b 100644 --- a/coregrind/m_debugger.c +++ b/coregrind/m_debugger.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/d3basics.c b/coregrind/m_debuginfo/d3basics.c index 9253704295..b553a641ac 100644 --- a/coregrind/m_debuginfo/d3basics.c +++ b/coregrind/m_debuginfo/d3basics.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 OpenWorks LLP + Copyright (C) 2008-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/debuginfo.c b/coregrind/m_debuginfo/debuginfo.c index e2be57a14b..56fbe82a39 100644 --- a/coregrind/m_debuginfo/debuginfo.c +++ b/coregrind/m_debuginfo/debuginfo.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/misc.c b/coregrind/m_debuginfo/misc.c index 08abfa421e..b3f134970c 100644 --- a/coregrind/m_debuginfo/misc.c +++ b/coregrind/m_debuginfo/misc.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 OpenWorks LLP + Copyright (C) 2008-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/priv_d3basics.h b/coregrind/m_debuginfo/priv_d3basics.h index 1dd171c963..3d05e84008 100644 --- a/coregrind/m_debuginfo/priv_d3basics.h +++ b/coregrind/m_debuginfo/priv_d3basics.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 OpenWorks LLP and others; see below + Copyright (C) 2008-2013 OpenWorks LLP and others; see below info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/priv_misc.h b/coregrind/m_debuginfo/priv_misc.h index 101d230dbe..c6b628ab67 100644 --- a/coregrind/m_debuginfo/priv_misc.h +++ b/coregrind/m_debuginfo/priv_misc.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 OpenWorks LLP + Copyright (C) 2008-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/priv_readdwarf.h b/coregrind/m_debuginfo/priv_readdwarf.h index 5b14480e20..fb2e19392d 100644 --- a/coregrind/m_debuginfo/priv_readdwarf.h +++ b/coregrind/m_debuginfo/priv_readdwarf.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/priv_readdwarf3.h b/coregrind/m_debuginfo/priv_readdwarf3.h index 5e038a1e8c..636153180f 100644 --- a/coregrind/m_debuginfo/priv_readdwarf3.h +++ b/coregrind/m_debuginfo/priv_readdwarf3.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 OpenWorks LLP + Copyright (C) 2008-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/priv_readelf.h b/coregrind/m_debuginfo/priv_readelf.h index d5a2a1cbdd..59ae353b0a 100644 --- a/coregrind/m_debuginfo/priv_readelf.h +++ b/coregrind/m_debuginfo/priv_readelf.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/priv_readpdb.h b/coregrind/m_debuginfo/priv_readpdb.h index 5baeff63c6..bdef9c9088 100644 --- a/coregrind/m_debuginfo/priv_readpdb.h +++ b/coregrind/m_debuginfo/priv_readpdb.h @@ -11,7 +11,7 @@ derived from readelf.c and valgrind-20031012-wine/vg_symtab2.c derived from wine-1.0/tools/winedump/pdb.c and msc.c - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/priv_readstabs.h b/coregrind/m_debuginfo/priv_readstabs.h index 5b35d09bf1..2432f86fd5 100644 --- a/coregrind/m_debuginfo/priv_readstabs.h +++ b/coregrind/m_debuginfo/priv_readstabs.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/priv_storage.h b/coregrind/m_debuginfo/priv_storage.h index 36c93935b8..9b9b4319b7 100644 --- a/coregrind/m_debuginfo/priv_storage.h +++ b/coregrind/m_debuginfo/priv_storage.h @@ -9,7 +9,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/priv_tytypes.h b/coregrind/m_debuginfo/priv_tytypes.h index 5d4dc0c7e0..e79f7de871 100644 --- a/coregrind/m_debuginfo/priv_tytypes.h +++ b/coregrind/m_debuginfo/priv_tytypes.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 OpenWorks LLP + Copyright (C) 2008-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/readdwarf.c b/coregrind/m_debuginfo/readdwarf.c index ba98e54845..dce99c599c 100644 --- a/coregrind/m_debuginfo/readdwarf.c +++ b/coregrind/m_debuginfo/readdwarf.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/readdwarf3.c b/coregrind/m_debuginfo/readdwarf3.c index fe35f55703..b0a7a9249c 100644 --- a/coregrind/m_debuginfo/readdwarf3.c +++ b/coregrind/m_debuginfo/readdwarf3.c @@ -9,7 +9,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 OpenWorks LLP + Copyright (C) 2008-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/readelf.c b/coregrind/m_debuginfo/readelf.c index 48b0e1ea03..e72e0d7d39 100644 --- a/coregrind/m_debuginfo/readelf.c +++ b/coregrind/m_debuginfo/readelf.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/readmacho.c b/coregrind/m_debuginfo/readmacho.c index 15eb1ad45f..6fca1bb891 100644 --- a/coregrind/m_debuginfo/readmacho.c +++ b/coregrind/m_debuginfo/readmacho.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Apple Inc. + Copyright (C) 2005-2013 Apple Inc. Greg Parker gparker@apple.com This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/readpdb.c b/coregrind/m_debuginfo/readpdb.c index 1994a1c540..3824a33e31 100644 --- a/coregrind/m_debuginfo/readpdb.c +++ b/coregrind/m_debuginfo/readpdb.c @@ -11,7 +11,7 @@ derived from readelf.c and valgrind-20031012-wine/vg_symtab2.c derived from wine-1.0/tools/winedump/pdb.c and msc.c - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org Copyright 2006 Eric Pouech (winedump/pdb.c and msc.c) GNU Lesser General Public License version 2.1 or later applies. diff --git a/coregrind/m_debuginfo/readstabs.c b/coregrind/m_debuginfo/readstabs.c index 9955627fd5..70ad319443 100644 --- a/coregrind/m_debuginfo/readstabs.c +++ b/coregrind/m_debuginfo/readstabs.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/storage.c b/coregrind/m_debuginfo/storage.c index ef7091350e..b1f187b3cc 100644 --- a/coregrind/m_debuginfo/storage.c +++ b/coregrind/m_debuginfo/storage.c @@ -9,7 +9,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuginfo/tytypes.c b/coregrind/m_debuginfo/tytypes.c index 9fcda78401..05df4564bf 100644 --- a/coregrind/m_debuginfo/tytypes.c +++ b/coregrind/m_debuginfo/tytypes.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 OpenWorks LLP + Copyright (C) 2008-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_debuglog.c b/coregrind/m_debuglog.c index 86e7fc8451..0b4f967b8e 100644 --- a/coregrind/m_debuglog.c +++ b/coregrind/m_debuglog.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_demangle/demangle.c b/coregrind/m_demangle/demangle.c index 8f9af4ab82..72832a464b 100644 --- a/coregrind/m_demangle/demangle.c +++ b/coregrind/m_demangle/demangle.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_demangle/vg_libciface.h b/coregrind/m_demangle/vg_libciface.h index 0d2b35e311..5241cbe65f 100644 --- a/coregrind/m_demangle/vg_libciface.h +++ b/coregrind/m_demangle/vg_libciface.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_dispatch/dispatch-amd64-darwin.S b/coregrind/m_dispatch/dispatch-amd64-darwin.S index 165666a278..02a8600190 100644 --- a/coregrind/m_dispatch/dispatch-amd64-darwin.S +++ b/coregrind/m_dispatch/dispatch-amd64-darwin.S @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_dispatch/dispatch-amd64-linux.S b/coregrind/m_dispatch/dispatch-amd64-linux.S index c6a0ea084c..245f693cdc 100644 --- a/coregrind/m_dispatch/dispatch-amd64-linux.S +++ b/coregrind/m_dispatch/dispatch-amd64-linux.S @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_dispatch/dispatch-arm-linux.S b/coregrind/m_dispatch/dispatch-arm-linux.S index 348af7ce0c..9d5b1fcf74 100644 --- a/coregrind/m_dispatch/dispatch-arm-linux.S +++ b/coregrind/m_dispatch/dispatch-arm-linux.S @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 Evan Geller + Copyright (C) 2008-2013 Evan Geller gaze@bea.ms This program is free software; you can redistribute it and/or diff --git a/coregrind/m_dispatch/dispatch-mips32-linux.S b/coregrind/m_dispatch/dispatch-mips32-linux.S index a059b98afc..a3a158cd2d 100644 --- a/coregrind/m_dispatch/dispatch-mips32-linux.S +++ b/coregrind/m_dispatch/dispatch-mips32-linux.S @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 RT-RK + Copyright (C) 2000-2013 RT-RK mips-valgrind@rt-rk.com This program is free software; you can redistribute it and/or diff --git a/coregrind/m_dispatch/dispatch-ppc32-linux.S b/coregrind/m_dispatch/dispatch-ppc32-linux.S index 1689b539b1..770a05882f 100644 --- a/coregrind/m_dispatch/dispatch-ppc32-linux.S +++ b/coregrind/m_dispatch/dispatch-ppc32-linux.S @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Cerion Armour-Brown + Copyright (C) 2005-2013 Cerion Armour-Brown This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_dispatch/dispatch-ppc64-linux.S b/coregrind/m_dispatch/dispatch-ppc64-linux.S index 5a4d4bcc7d..ac1c4cbe46 100644 --- a/coregrind/m_dispatch/dispatch-ppc64-linux.S +++ b/coregrind/m_dispatch/dispatch-ppc64-linux.S @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Cerion Armour-Brown + Copyright (C) 2005-2013 Cerion Armour-Brown This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_dispatch/dispatch-s390x-linux.S b/coregrind/m_dispatch/dispatch-s390x-linux.S index c63115d482..d7d05ab4e6 100644 --- a/coregrind/m_dispatch/dispatch-s390x-linux.S +++ b/coregrind/m_dispatch/dispatch-s390x-linux.S @@ -8,8 +8,8 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright IBM Corp. 2010-2012 - Copyright (C) 2011-2012, Florian Krohm (britzel@acm.org) + Copyright IBM Corp. 2010-2013 + Copyright (C) 2011-2013, Florian Krohm (britzel@acm.org) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_dispatch/dispatch-x86-darwin.S b/coregrind/m_dispatch/dispatch-x86-darwin.S index a54b732ce0..b6647cee61 100644 --- a/coregrind/m_dispatch/dispatch-x86-darwin.S +++ b/coregrind/m_dispatch/dispatch-x86-darwin.S @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_dispatch/dispatch-x86-linux.S b/coregrind/m_dispatch/dispatch-x86-linux.S index a79ab4a9d4..20517da3f1 100644 --- a/coregrind/m_dispatch/dispatch-x86-linux.S +++ b/coregrind/m_dispatch/dispatch-x86-linux.S @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_errormgr.c b/coregrind/m_errormgr.c index 091fce5d6e..9638042bc6 100644 --- a/coregrind/m_errormgr.c +++ b/coregrind/m_errormgr.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_execontext.c b/coregrind/m_execontext.c index 0b7f958d5e..cec2c85700 100644 --- a/coregrind/m_execontext.c +++ b/coregrind/m_execontext.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_gdbserver/m_gdbserver.c b/coregrind/m_gdbserver/m_gdbserver.c index b367570439..5ba6555312 100644 --- a/coregrind/m_gdbserver/m_gdbserver.c +++ b/coregrind/m_gdbserver/m_gdbserver.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2011-2012 Philippe Waroquiers + Copyright (C) 2011-2013 Philippe Waroquiers This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_hashtable.c b/coregrind/m_hashtable.c index abf1df0452..d71e7598e9 100644 --- a/coregrind/m_hashtable.c +++ b/coregrind/m_hashtable.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Nicholas Nethercote + Copyright (C) 2005-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_initimg/initimg-darwin.c b/coregrind/m_initimg/initimg-darwin.c index 29d3fb7e72..d876ddd6af 100644 --- a/coregrind/m_initimg/initimg-darwin.c +++ b/coregrind/m_initimg/initimg-darwin.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_initimg/initimg-linux.c b/coregrind/m_initimg/initimg-linux.c index 1f47a357f7..9bcc05cd22 100644 --- a/coregrind/m_initimg/initimg-linux.c +++ b/coregrind/m_initimg/initimg-linux.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_initimg/initimg-pathscan.c b/coregrind/m_initimg/initimg-pathscan.c index 91d3f1da26..88d2307903 100644 --- a/coregrind/m_initimg/initimg-pathscan.c +++ b/coregrind/m_initimg/initimg-pathscan.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_libcassert.c b/coregrind/m_libcassert.c index c8efddedeb..d7706dec8a 100644 --- a/coregrind/m_libcassert.c +++ b/coregrind/m_libcassert.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_libcbase.c b/coregrind/m_libcbase.c index 5e3fc80c35..0c334ed248 100644 --- a/coregrind/m_libcbase.c +++ b/coregrind/m_libcbase.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_libcfile.c b/coregrind/m_libcfile.c index ebf95944b3..aeca9dd8b2 100644 --- a/coregrind/m_libcfile.c +++ b/coregrind/m_libcfile.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_libcprint.c b/coregrind/m_libcprint.c index 094f7d52b6..450d67e8a8 100644 --- a/coregrind/m_libcprint.c +++ b/coregrind/m_libcprint.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_libcproc.c b/coregrind/m_libcproc.c index 9a434b3a58..88dba87121 100644 --- a/coregrind/m_libcproc.c +++ b/coregrind/m_libcproc.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_libcsetjmp.c b/coregrind/m_libcsetjmp.c index af47ba0d3b..5b72182a85 100644 --- a/coregrind/m_libcsetjmp.c +++ b/coregrind/m_libcsetjmp.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2010-2012 Mozilla Inc + Copyright (C) 2010-2013 Mozilla Inc This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_libcsignal.c b/coregrind/m_libcsignal.c index 4015634766..b84f84ca68 100644 --- a/coregrind/m_libcsignal.c +++ b/coregrind/m_libcsignal.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_mach/mach_basics.c b/coregrind/m_mach/mach_basics.c index 7c73c77499..33fab901a0 100644 --- a/coregrind/m_mach/mach_basics.c +++ b/coregrind/m_mach/mach_basics.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Apple Inc. + Copyright (C) 2005-2013 Apple Inc. Greg Parker gparker@apple.com This program is free software; you can redistribute it and/or diff --git a/coregrind/m_mach/mach_traps-amd64-darwin.S b/coregrind/m_mach/mach_traps-amd64-darwin.S index e305ccf81f..be189a0c94 100644 --- a/coregrind/m_mach/mach_traps-amd64-darwin.S +++ b/coregrind/m_mach/mach_traps-amd64-darwin.S @@ -6,7 +6,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2007-2012 Apple Inc. + Copyright (C) 2007-2013 Apple Inc. Greg Parker gparker@apple.com This program is free software; you can redistribute it and/or diff --git a/coregrind/m_mach/mach_traps-x86-darwin.S b/coregrind/m_mach/mach_traps-x86-darwin.S index d77094a018..b9bf99b069 100644 --- a/coregrind/m_mach/mach_traps-x86-darwin.S +++ b/coregrind/m_mach/mach_traps-x86-darwin.S @@ -6,7 +6,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2006-2012 Apple Inc. + Copyright (C) 2006-2013 Apple Inc. Greg Parker gparker@apple.com This program is free software; you can redistribute it and/or diff --git a/coregrind/m_machine.c b/coregrind/m_machine.c index c4740327cb..6c8aa8ffb6 100644 --- a/coregrind/m_machine.c +++ b/coregrind/m_machine.c @@ -6,7 +6,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_main.c b/coregrind/m_main.c index 610d782519..ee87d52182 100644 --- a/coregrind/m_main.c +++ b/coregrind/m_main.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or @@ -285,8 +285,8 @@ static void usage_NORETURN ( Bool debug_help ) " Extra options read from ~/.valgrindrc, $VALGRIND_OPTS, ./.valgrindrc\n" "\n" " %s is %s\n" -" Valgrind is Copyright (C) 2000-2012, and GNU GPL'd, by Julian Seward et al.\n" -" LibVEX is Copyright (C) 2004-2012, and GNU GPL'd, by OpenWorks LLP et al.\n" +" Valgrind is Copyright (C) 2000-2013, and GNU GPL'd, by Julian Seward et al.\n" +" LibVEX is Copyright (C) 2004-2013, and GNU GPL'd, by OpenWorks LLP et al.\n" "\n" " Bug reports, feedback, admiration, abuse, etc, to: %s.\n" "\n"; diff --git a/coregrind/m_mallocfree.c b/coregrind/m_mallocfree.c index 9ba5855ace..43718c66ce 100644 --- a/coregrind/m_mallocfree.c +++ b/coregrind/m_mallocfree.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_options.c b/coregrind/m_options.c index 81225768da..4eb215c961 100644 --- a/coregrind/m_options.c +++ b/coregrind/m_options.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Nicholas Nethercote + Copyright (C) 2000-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_oset.c b/coregrind/m_oset.c index d1a21e8526..979245c398 100644 --- a/coregrind/m_oset.c +++ b/coregrind/m_oset.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Nicholas Nethercote + Copyright (C) 2005-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_poolalloc.c b/coregrind/m_poolalloc.c index ee8f55fe6b..d3bcb9dbcd 100644 --- a/coregrind/m_poolalloc.c +++ b/coregrind/m_poolalloc.c @@ -5,7 +5,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2011-2012 OpenWorks LLP info@open-works.co.uk, + Copyright (C) 2011-2013 OpenWorks LLP info@open-works.co.uk, Philippe Waroquiers philippe.waroquiers@skynet.be This program is free software; you can redistribute it and/or diff --git a/coregrind/m_redir.c b/coregrind/m_redir.c index df9246bfcf..2832e5c465 100644 --- a/coregrind/m_redir.c +++ b/coregrind/m_redir.c @@ -7,9 +7,9 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org - Copyright (C) 2003-2012 Jeremy Fitzhardinge + Copyright (C) 2003-2013 Jeremy Fitzhardinge jeremy@goop.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_replacemalloc/replacemalloc_core.c b/coregrind/m_replacemalloc/replacemalloc_core.c index 083164b7ec..aa9b46a366 100644 --- a/coregrind/m_replacemalloc/replacemalloc_core.c +++ b/coregrind/m_replacemalloc/replacemalloc_core.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_replacemalloc/vg_replace_malloc.c b/coregrind/m_replacemalloc/vg_replace_malloc.c index bdb7bf7a27..8b53e88ab9 100644 --- a/coregrind/m_replacemalloc/vg_replace_malloc.c +++ b/coregrind/m_replacemalloc/vg_replace_malloc.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_sbprofile.c b/coregrind/m_sbprofile.c index d49be6d155..53f9715872 100644 --- a/coregrind/m_sbprofile.c +++ b/coregrind/m_sbprofile.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2012-2012 Mozilla Foundation + Copyright (C) 2012-2013 Mozilla Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_scheduler/priv_sched-lock-impl.h b/coregrind/m_scheduler/priv_sched-lock-impl.h index e49250ccdc..58e2ea3266 100644 --- a/coregrind/m_scheduler/priv_sched-lock-impl.h +++ b/coregrind/m_scheduler/priv_sched-lock-impl.h @@ -9,7 +9,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2011 Bart Van Assche . + Copyright (C) 2011-2013 Bart Van Assche . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_scheduler/priv_sched-lock.h b/coregrind/m_scheduler/priv_sched-lock.h index a07d83d216..9a951ca30c 100644 --- a/coregrind/m_scheduler/priv_sched-lock.h +++ b/coregrind/m_scheduler/priv_sched-lock.h @@ -9,7 +9,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2011 Bart Van Assche . + Copyright (C) 2011-2013 Bart Van Assche . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_scheduler/priv_sema.h b/coregrind/m_scheduler/priv_sema.h index 1f2f7e955d..bef7b4fe15 100644 --- a/coregrind/m_scheduler/priv_sema.h +++ b/coregrind/m_scheduler/priv_sema.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_scheduler/sched-lock-generic.c b/coregrind/m_scheduler/sched-lock-generic.c index 41f01a7abb..eb1230bc70 100644 --- a/coregrind/m_scheduler/sched-lock-generic.c +++ b/coregrind/m_scheduler/sched-lock-generic.c @@ -11,7 +11,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2011 Bart Van Assche . + Copyright (C) 2011-2013 Bart Van Assche . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_scheduler/sched-lock.c b/coregrind/m_scheduler/sched-lock.c index dbd9ba563a..dd25321946 100644 --- a/coregrind/m_scheduler/sched-lock.c +++ b/coregrind/m_scheduler/sched-lock.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2011 Bart Van Assche . + Copyright (C) 2011-2013 Bart Van Assche . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_scheduler/scheduler.c b/coregrind/m_scheduler/scheduler.c index 73a4ab5ce4..87c7d0eadc 100644 --- a/coregrind/m_scheduler/scheduler.c +++ b/coregrind/m_scheduler/scheduler.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_scheduler/sema.c b/coregrind/m_scheduler/sema.c index bbfde8659b..44f27f2423 100644 --- a/coregrind/m_scheduler/sema.c +++ b/coregrind/m_scheduler/sema.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_scheduler/ticket-lock-linux.c b/coregrind/m_scheduler/ticket-lock-linux.c index d0bc59ead8..f80df6d19e 100644 --- a/coregrind/m_scheduler/ticket-lock-linux.c +++ b/coregrind/m_scheduler/ticket-lock-linux.c @@ -14,7 +14,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2011 Bart Van Assche . + Copyright (C) 2011-2013 Bart Van Assche . This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_seqmatch.c b/coregrind/m_seqmatch.c index 09db2d1360..f0ad1ab001 100644 --- a/coregrind/m_seqmatch.c +++ b/coregrind/m_seqmatch.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 OpenWorks Ltd + Copyright (C) 2008-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_sigframe/sigframe-amd64-darwin.c b/coregrind/m_sigframe/sigframe-amd64-darwin.c index 833d9d502b..f964cb1423 100644 --- a/coregrind/m_sigframe/sigframe-amd64-darwin.c +++ b/coregrind/m_sigframe/sigframe-amd64-darwin.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2006-2012 OpenWorks Ltd + Copyright (C) 2006-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_sigframe/sigframe-amd64-linux.c b/coregrind/m_sigframe/sigframe-amd64-linux.c index 651ea11675..7d03f0336a 100644 --- a/coregrind/m_sigframe/sigframe-amd64-linux.c +++ b/coregrind/m_sigframe/sigframe-amd64-linux.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Nicholas Nethercote + Copyright (C) 2000-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_sigframe/sigframe-arm-linux.c b/coregrind/m_sigframe/sigframe-arm-linux.c index 06069e486b..f949fb1310 100644 --- a/coregrind/m_sigframe/sigframe-arm-linux.c +++ b/coregrind/m_sigframe/sigframe-arm-linux.c @@ -8,11 +8,11 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Nicholas Nethercote + Copyright (C) 2000-2013 Nicholas Nethercote njn@valgrind.org - Copyright (C) 2004-2012 Paul Mackerras + Copyright (C) 2004-2013 Paul Mackerras paulus@samba.org - Copyright (C) 2008-2012 Evan Geller + Copyright (C) 2008-2013 Evan Geller gaze@bea.ms This program is free software; you can redistribute it and/or diff --git a/coregrind/m_sigframe/sigframe-mips32-linux.c b/coregrind/m_sigframe/sigframe-mips32-linux.c index e0220beef1..466728873d 100644 --- a/coregrind/m_sigframe/sigframe-mips32-linux.c +++ b/coregrind/m_sigframe/sigframe-mips32-linux.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2010-2012 RT-RK + Copyright (C) 2010-2013 RT-RK mips-valgrind@rt-rk.com This program is free software; you can redistribute it and/or diff --git a/coregrind/m_sigframe/sigframe-ppc32-linux.c b/coregrind/m_sigframe/sigframe-ppc32-linux.c index 5fa368643e..8731c4f90b 100644 --- a/coregrind/m_sigframe/sigframe-ppc32-linux.c +++ b/coregrind/m_sigframe/sigframe-ppc32-linux.c @@ -8,9 +8,9 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Nicholas Nethercote + Copyright (C) 2000-2013 Nicholas Nethercote njn@valgrind.org - Copyright (C) 2004-2012 Paul Mackerras + Copyright (C) 2004-2013 Paul Mackerras paulus@samba.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_sigframe/sigframe-ppc64-linux.c b/coregrind/m_sigframe/sigframe-ppc64-linux.c index d1bb91a7af..3e5fa7445b 100644 --- a/coregrind/m_sigframe/sigframe-ppc64-linux.c +++ b/coregrind/m_sigframe/sigframe-ppc64-linux.c @@ -8,9 +8,9 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Nicholas Nethercote + Copyright (C) 2000-2013 Nicholas Nethercote njn@valgrind.org - Copyright (C) 2004-2012 Paul Mackerras + Copyright (C) 2004-2013 Paul Mackerras paulus@samba.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_sigframe/sigframe-s390x-linux.c b/coregrind/m_sigframe/sigframe-s390x-linux.c index 1c703fe5bd..5210cebb04 100644 --- a/coregrind/m_sigframe/sigframe-s390x-linux.c +++ b/coregrind/m_sigframe/sigframe-s390x-linux.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright IBM Corp. 2010-2012 + Copyright IBM Corp. 2010-2013 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_sigframe/sigframe-x86-darwin.c b/coregrind/m_sigframe/sigframe-x86-darwin.c index adcbd0e6f4..29557511ce 100644 --- a/coregrind/m_sigframe/sigframe-x86-darwin.c +++ b/coregrind/m_sigframe/sigframe-x86-darwin.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2006-2012 OpenWorks Ltd + Copyright (C) 2006-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_sigframe/sigframe-x86-linux.c b/coregrind/m_sigframe/sigframe-x86-linux.c index 0551f21894..5e255aef93 100644 --- a/coregrind/m_sigframe/sigframe-x86-linux.c +++ b/coregrind/m_sigframe/sigframe-x86-linux.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Nicholas Nethercote + Copyright (C) 2000-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_signals.c b/coregrind/m_signals.c index 8c65b11b16..f4f04ebe07 100644 --- a/coregrind/m_signals.c +++ b/coregrind/m_signals.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_sparsewa.c b/coregrind/m_sparsewa.c index 4ccb7a6083..666754204f 100644 --- a/coregrind/m_sparsewa.c +++ b/coregrind/m_sparsewa.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 OpenWorks Ltd + Copyright (C) 2008-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_stacks.c b/coregrind/m_stacks.c index 186d83f4a9..d96f70e423 100644 --- a/coregrind/m_stacks.c +++ b/coregrind/m_stacks.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_stacktrace.c b/coregrind/m_stacktrace.c index c0523500ff..53022d3cdf 100644 --- a/coregrind/m_stacktrace.c +++ b/coregrind/m_stacktrace.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syscall.c b/coregrind/m_syscall.c index 4312d132f3..6f6c4cbbb8 100644 --- a/coregrind/m_syscall.c +++ b/coregrind/m_syscall.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/priv_syswrap-darwin.h b/coregrind/m_syswrap/priv_syswrap-darwin.h index d0ecd23115..c3dba59ccf 100644 --- a/coregrind/m_syswrap/priv_syswrap-darwin.h +++ b/coregrind/m_syswrap/priv_syswrap-darwin.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Apple Inc. + Copyright (C) 2005-2013 Apple Inc. Greg Parker gparker@apple.com This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/priv_syswrap-generic.h b/coregrind/m_syswrap/priv_syswrap-generic.h index 6faf6616ea..598e27d3fa 100644 --- a/coregrind/m_syswrap/priv_syswrap-generic.h +++ b/coregrind/m_syswrap/priv_syswrap-generic.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/priv_syswrap-linux-variants.h b/coregrind/m_syswrap/priv_syswrap-linux-variants.h index 6bd0563b29..07b745f46a 100644 --- a/coregrind/m_syswrap/priv_syswrap-linux-variants.h +++ b/coregrind/m_syswrap/priv_syswrap-linux-variants.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/priv_syswrap-linux.h b/coregrind/m_syswrap/priv_syswrap-linux.h index 482891f416..5db490058c 100644 --- a/coregrind/m_syswrap/priv_syswrap-linux.h +++ b/coregrind/m_syswrap/priv_syswrap-linux.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Nicholas Nethercote + Copyright (C) 2000-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/priv_syswrap-main.h b/coregrind/m_syswrap/priv_syswrap-main.h index 46563264b5..4105f96663 100644 --- a/coregrind/m_syswrap/priv_syswrap-main.h +++ b/coregrind/m_syswrap/priv_syswrap-main.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Nicholas Nethercote + Copyright (C) 2000-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/priv_types_n_macros.h b/coregrind/m_syswrap/priv_types_n_macros.h index a37ad6ac91..e2edf95f9b 100644 --- a/coregrind/m_syswrap/priv_types_n_macros.h +++ b/coregrind/m_syswrap/priv_types_n_macros.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/syscall-amd64-darwin.S b/coregrind/m_syswrap/syscall-amd64-darwin.S index 48ffad4151..c5937302c6 100644 --- a/coregrind/m_syswrap/syscall-amd64-darwin.S +++ b/coregrind/m_syswrap/syscall-amd64-darwin.S @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/syscall-amd64-linux.S b/coregrind/m_syswrap/syscall-amd64-linux.S index 1b46f3eb27..0810b5455d 100644 --- a/coregrind/m_syswrap/syscall-amd64-linux.S +++ b/coregrind/m_syswrap/syscall-amd64-linux.S @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/syscall-arm-linux.S b/coregrind/m_syswrap/syscall-arm-linux.S index 6f18518ec7..1d1b266875 100644 --- a/coregrind/m_syswrap/syscall-arm-linux.S +++ b/coregrind/m_syswrap/syscall-arm-linux.S @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 Evan Geller (gaze@bea.ms) + Copyright (C) 2008-2013 Evan Geller (gaze@bea.ms) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_syswrap/syscall-mips32-linux.S b/coregrind/m_syswrap/syscall-mips32-linux.S index 6a550aa74f..4a764a2812 100644 --- a/coregrind/m_syswrap/syscall-mips32-linux.S +++ b/coregrind/m_syswrap/syscall-mips32-linux.S @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2010-2012 RT-RK + Copyright (C) 2010-2013 RT-RK mips-valgrind@rt-rk.com This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/syscall-ppc32-linux.S b/coregrind/m_syswrap/syscall-ppc32-linux.S index 9a11126450..9cd2aaa907 100644 --- a/coregrind/m_syswrap/syscall-ppc32-linux.S +++ b/coregrind/m_syswrap/syscall-ppc32-linux.S @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Paul Mackerras (paulus@samba.org) + Copyright (C) 2005-2013 Paul Mackerras (paulus@samba.org) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_syswrap/syscall-ppc64-linux.S b/coregrind/m_syswrap/syscall-ppc64-linux.S index f3a1392c8f..30ae594f50 100644 --- a/coregrind/m_syswrap/syscall-ppc64-linux.S +++ b/coregrind/m_syswrap/syscall-ppc64-linux.S @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Paul Mackerras + Copyright (C) 2005-2013 Paul Mackerras This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_syswrap/syscall-s390x-linux.S b/coregrind/m_syswrap/syscall-s390x-linux.S index e31e70145d..6b21eac622 100644 --- a/coregrind/m_syswrap/syscall-s390x-linux.S +++ b/coregrind/m_syswrap/syscall-s390x-linux.S @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright IBM Corp. 2010-2012 + Copyright IBM Corp. 2010-2013 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_syswrap/syscall-x86-darwin.S b/coregrind/m_syswrap/syscall-x86-darwin.S index 8955250668..288520d093 100644 --- a/coregrind/m_syswrap/syscall-x86-darwin.S +++ b/coregrind/m_syswrap/syscall-x86-darwin.S @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/syscall-x86-linux.S b/coregrind/m_syswrap/syscall-x86-linux.S index 2b440d73d8..78b3df41fe 100644 --- a/coregrind/m_syswrap/syscall-x86-linux.S +++ b/coregrind/m_syswrap/syscall-x86-linux.S @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/syswrap-amd64-darwin.c b/coregrind/m_syswrap/syswrap-amd64-darwin.c index bef016302b..018c4bb8ca 100644 --- a/coregrind/m_syswrap/syswrap-amd64-darwin.c +++ b/coregrind/m_syswrap/syswrap-amd64-darwin.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Apple Inc. + Copyright (C) 2005-2013 Apple Inc. Greg Parker gparker@apple.com This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/syswrap-amd64-linux.c b/coregrind/m_syswrap/syswrap-amd64-linux.c index 1ec24b5ce6..837dfc2717 100644 --- a/coregrind/m_syswrap/syswrap-amd64-linux.c +++ b/coregrind/m_syswrap/syswrap-amd64-linux.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Nicholas Nethercote + Copyright (C) 2000-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/syswrap-arm-linux.c b/coregrind/m_syswrap/syswrap-arm-linux.c index 26a7ce4f90..9da50bcf47 100644 --- a/coregrind/m_syswrap/syswrap-arm-linux.c +++ b/coregrind/m_syswrap/syswrap-arm-linux.c @@ -7,9 +7,9 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Nicholas Nethercote + Copyright (C) 2000-2013 Nicholas Nethercote njn@valgrind.org - Copyright (C) 2008-2012 Evan Geller + Copyright (C) 2008-2013 Evan Geller gaze@bea.ms This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/syswrap-darwin.c b/coregrind/m_syswrap/syswrap-darwin.c index cbe9fbdd05..8177b6487b 100644 --- a/coregrind/m_syswrap/syswrap-darwin.c +++ b/coregrind/m_syswrap/syswrap-darwin.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Apple Inc. + Copyright (C) 2005-2013 Apple Inc. Greg Parker gparker@apple.com This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/syswrap-generic.c b/coregrind/m_syswrap/syswrap-generic.c index 0e0b3f6818..d852f2d6cd 100644 --- a/coregrind/m_syswrap/syswrap-generic.c +++ b/coregrind/m_syswrap/syswrap-generic.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/syswrap-linux-variants.c b/coregrind/m_syswrap/syswrap-linux-variants.c index c516a08833..d39e2f2ec0 100644 --- a/coregrind/m_syswrap/syswrap-linux-variants.c +++ b/coregrind/m_syswrap/syswrap-linux-variants.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/syswrap-linux.c b/coregrind/m_syswrap/syswrap-linux.c index ed72309fa0..e50665e9bb 100644 --- a/coregrind/m_syswrap/syswrap-linux.c +++ b/coregrind/m_syswrap/syswrap-linux.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Nicholas Nethercote + Copyright (C) 2000-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/syswrap-main.c b/coregrind/m_syswrap/syswrap-main.c index ea9b2e3c68..02e81a7408 100644 --- a/coregrind/m_syswrap/syswrap-main.c +++ b/coregrind/m_syswrap/syswrap-main.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/syswrap-mips32-linux.c b/coregrind/m_syswrap/syswrap-mips32-linux.c index d99d06b8d0..40de789ce5 100644 --- a/coregrind/m_syswrap/syswrap-mips32-linux.c +++ b/coregrind/m_syswrap/syswrap-mips32-linux.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2010-2012 RT-RK + Copyright (C) 2010-2013 RT-RK mips-valgrind@rt-rk.com This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/syswrap-ppc32-linux.c b/coregrind/m_syswrap/syswrap-ppc32-linux.c index cf714cb280..ac5211b634 100644 --- a/coregrind/m_syswrap/syswrap-ppc32-linux.c +++ b/coregrind/m_syswrap/syswrap-ppc32-linux.c @@ -7,8 +7,8 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Nicholas Nethercote - Copyright (C) 2005-2012 Cerion Armour-Brown + Copyright (C) 2005-2013 Nicholas Nethercote + Copyright (C) 2005-2013 Cerion Armour-Brown This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_syswrap/syswrap-ppc64-linux.c b/coregrind/m_syswrap/syswrap-ppc64-linux.c index 7310b2a7cf..3a05dbe9b4 100644 --- a/coregrind/m_syswrap/syswrap-ppc64-linux.c +++ b/coregrind/m_syswrap/syswrap-ppc64-linux.c @@ -7,8 +7,8 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Nicholas Nethercote - Copyright (C) 2005-2012 Cerion Armour-Brown + Copyright (C) 2005-2013 Nicholas Nethercote + Copyright (C) 2005-2013 Cerion Armour-Brown This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_syswrap/syswrap-s390x-linux.c b/coregrind/m_syswrap/syswrap-s390x-linux.c index 84c2f293aa..8bbdf3dfe1 100644 --- a/coregrind/m_syswrap/syswrap-s390x-linux.c +++ b/coregrind/m_syswrap/syswrap-s390x-linux.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright IBM Corp. 2010-2012 + Copyright IBM Corp. 2010-2013 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/m_syswrap/syswrap-x86-darwin.c b/coregrind/m_syswrap/syswrap-x86-darwin.c index 1a90d8fe60..b7c8241dc3 100644 --- a/coregrind/m_syswrap/syswrap-x86-darwin.c +++ b/coregrind/m_syswrap/syswrap-x86-darwin.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Apple Inc. + Copyright (C) 2005-2013 Apple Inc. Greg Parker gparker@apple.com This program is free software; you can redistribute it and/or diff --git a/coregrind/m_syswrap/syswrap-x86-linux.c b/coregrind/m_syswrap/syswrap-x86-linux.c index 730ab41b9a..84dc2f2222 100644 --- a/coregrind/m_syswrap/syswrap-x86-linux.c +++ b/coregrind/m_syswrap/syswrap-x86-linux.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Nicholas Nethercote + Copyright (C) 2000-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_threadstate.c b/coregrind/m_threadstate.c index 4d66836948..46bf289bf7 100644 --- a/coregrind/m_threadstate.c +++ b/coregrind/m_threadstate.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_tooliface.c b/coregrind/m_tooliface.c index 24f0b3abe0..f2cfcbe7fb 100644 --- a/coregrind/m_tooliface.c +++ b/coregrind/m_tooliface.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Nicholas Nethercote + Copyright (C) 2000-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_trampoline.S b/coregrind/m_trampoline.S index f2a86eae5c..aac7282cd7 100644 --- a/coregrind/m_trampoline.S +++ b/coregrind/m_trampoline.S @@ -7,9 +7,9 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org - Copyright (C) 2006-2012 OpenWorks LLP + Copyright (C) 2006-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_translate.c b/coregrind/m_translate.c index 92aa00866a..8cc7038315 100644 --- a/coregrind/m_translate.c +++ b/coregrind/m_translate.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_transtab.c b/coregrind/m_transtab.c index 082be51887..c0d7aee3f9 100644 --- a/coregrind/m_transtab.c +++ b/coregrind/m_transtab.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_ume/elf.c b/coregrind/m_ume/elf.c index 89f2630db6..b5b30e5726 100644 --- a/coregrind/m_ume/elf.c +++ b/coregrind/m_ume/elf.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_ume/macho.c b/coregrind/m_ume/macho.c index 5f6af43057..96f1525b85 100644 --- a/coregrind/m_ume/macho.c +++ b/coregrind/m_ume/macho.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Apple Inc. + Copyright (C) 2005-2013 Apple Inc. Greg Parker gparker@apple.com This program is free software; you can redistribute it and/or diff --git a/coregrind/m_ume/main.c b/coregrind/m_ume/main.c index ad61d6e9f8..d40e216a25 100644 --- a/coregrind/m_ume/main.c +++ b/coregrind/m_ume/main.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_ume/priv_ume.h b/coregrind/m_ume/priv_ume.h index 1b6e561690..b22df80b9d 100644 --- a/coregrind/m_ume/priv_ume.h +++ b/coregrind/m_ume/priv_ume.h @@ -6,7 +6,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_ume/script.c b/coregrind/m_ume/script.c index 4976126376..741838e62d 100644 --- a/coregrind/m_ume/script.c +++ b/coregrind/m_ume/script.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/m_vki.c b/coregrind/m_vki.c index d44ebdca79..e67c24bec8 100644 --- a/coregrind/m_vki.c +++ b/coregrind/m_vki.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2006-2012 OpenWorks LLP + Copyright (C) 2006-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_vkiscnums.c b/coregrind/m_vkiscnums.c index f7fddcbb4d..56a1627fc1 100644 --- a/coregrind/m_vkiscnums.c +++ b/coregrind/m_vkiscnums.c @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2006-2012 OpenWorks LLP + Copyright (C) 2006-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/m_wordfm.c b/coregrind/m_wordfm.c index c517fcbf89..f3e517ce60 100644 --- a/coregrind/m_wordfm.c +++ b/coregrind/m_wordfm.c @@ -9,13 +9,13 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2007-2012 Julian Seward + Copyright (C) 2007-2013 Julian Seward jseward@acm.org This code is based on previous work by Nicholas Nethercote (coregrind/m_oset.c) which is - Copyright (C) 2005-2012 Nicholas Nethercote + Copyright (C) 2005-2013 Nicholas Nethercote njn@valgrind.org which in turn was derived partially from: diff --git a/coregrind/m_xarray.c b/coregrind/m_xarray.c index 2dbd90d07d..3b27d63e1a 100644 --- a/coregrind/m_xarray.c +++ b/coregrind/m_xarray.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2007-2012 OpenWorks LLP + Copyright (C) 2007-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_aspacehl.h b/coregrind/pub_core_aspacehl.h index 8aa7c558bd..7ff0d98c78 100644 --- a/coregrind/pub_core_aspacehl.h +++ b/coregrind/pub_core_aspacehl.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2009-2012 Julian Seward + Copyright (C) 2009-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_aspacemgr.h b/coregrind/pub_core_aspacemgr.h index b6821f3694..1708fbe4f1 100644 --- a/coregrind/pub_core_aspacemgr.h +++ b/coregrind/pub_core_aspacemgr.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_basics.h b/coregrind/pub_core_basics.h index a086986497..a0b95083f1 100644 --- a/coregrind/pub_core_basics.h +++ b/coregrind/pub_core_basics.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_basics_asm.h b/coregrind/pub_core_basics_asm.h index 293ee8d3a8..ada20cb1d2 100644 --- a/coregrind/pub_core_basics_asm.h +++ b/coregrind/pub_core_basics_asm.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_clientstate.h b/coregrind/pub_core_clientstate.h index b2a2f98f61..fe95b82c51 100644 --- a/coregrind/pub_core_clientstate.h +++ b/coregrind/pub_core_clientstate.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_clreq.h b/coregrind/pub_core_clreq.h index 4fb712dcd8..b6d3a096c6 100644 --- a/coregrind/pub_core_clreq.h +++ b/coregrind/pub_core_clreq.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_commandline.h b/coregrind/pub_core_commandline.h index 4429b19bad..0cf003631a 100644 --- a/coregrind/pub_core_commandline.h +++ b/coregrind/pub_core_commandline.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_coredump.h b/coregrind/pub_core_coredump.h index 9d94fbf2e8..c981e7faca 100644 --- a/coregrind/pub_core_coredump.h +++ b/coregrind/pub_core_coredump.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_cpuid.h b/coregrind/pub_core_cpuid.h index 43f4fd91f2..eebe3713e4 100644 --- a/coregrind/pub_core_cpuid.h +++ b/coregrind/pub_core_cpuid.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_debugger.h b/coregrind/pub_core_debugger.h index e55df1a259..a3ac809c88 100644 --- a/coregrind/pub_core_debugger.h +++ b/coregrind/pub_core_debugger.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_debuginfo.h b/coregrind/pub_core_debuginfo.h index 6705bffdfa..100f2c7afe 100644 --- a/coregrind/pub_core_debuginfo.h +++ b/coregrind/pub_core_debuginfo.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_debuglog.h b/coregrind/pub_core_debuglog.h index efb9416738..812ce8ab3e 100644 --- a/coregrind/pub_core_debuglog.h +++ b/coregrind/pub_core_debuglog.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_demangle.h b/coregrind/pub_core_demangle.h index 94b3fffa4f..b3e5307d39 100644 --- a/coregrind/pub_core_demangle.h +++ b/coregrind/pub_core_demangle.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_dispatch.h b/coregrind/pub_core_dispatch.h index bf29e0b46b..1193fad68c 100644 --- a/coregrind/pub_core_dispatch.h +++ b/coregrind/pub_core_dispatch.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_dispatch_asm.h b/coregrind/pub_core_dispatch_asm.h index 23758947b0..97fa50087f 100644 --- a/coregrind/pub_core_dispatch_asm.h +++ b/coregrind/pub_core_dispatch_asm.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_errormgr.h b/coregrind/pub_core_errormgr.h index 4faa68ba8a..110c206a65 100644 --- a/coregrind/pub_core_errormgr.h +++ b/coregrind/pub_core_errormgr.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_execontext.h b/coregrind/pub_core_execontext.h index 4342ec2280..abab88895b 100644 --- a/coregrind/pub_core_execontext.h +++ b/coregrind/pub_core_execontext.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_gdbserver.h b/coregrind/pub_core_gdbserver.h index 08f34e949d..b10adbb8de 100644 --- a/coregrind/pub_core_gdbserver.h +++ b/coregrind/pub_core_gdbserver.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2011-2012 Philippe Waroquiers + Copyright (C) 2011-2013 Philippe Waroquiers This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/pub_core_hashtable.h b/coregrind/pub_core_hashtable.h index d7dd060df5..ca6ba57fb1 100644 --- a/coregrind/pub_core_hashtable.h +++ b/coregrind/pub_core_hashtable.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Nicholas Nethercote + Copyright (C) 2005-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_initimg.h b/coregrind/pub_core_initimg.h index 915583c20e..a9a8ab394c 100644 --- a/coregrind/pub_core_initimg.h +++ b/coregrind/pub_core_initimg.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2006-2012 OpenWorks LLP + Copyright (C) 2006-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_inner.h b/coregrind/pub_core_inner.h index 8998a65cb3..9ee26227a6 100644 --- a/coregrind/pub_core_inner.h +++ b/coregrind/pub_core_inner.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2012-2012 Philippe Waroquiers + Copyright (C) 2012-2013 Philippe Waroquiers philippe.waroquiers@skynet.be This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_libcassert.h b/coregrind/pub_core_libcassert.h index 2f7e03ed0f..e08983a9e3 100644 --- a/coregrind/pub_core_libcassert.h +++ b/coregrind/pub_core_libcassert.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_libcbase.h b/coregrind/pub_core_libcbase.h index 0c4d6765c6..e0b5bbfc61 100644 --- a/coregrind/pub_core_libcbase.h +++ b/coregrind/pub_core_libcbase.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_libcfile.h b/coregrind/pub_core_libcfile.h index 430b53751b..7a8e25cad4 100644 --- a/coregrind/pub_core_libcfile.h +++ b/coregrind/pub_core_libcfile.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_libcprint.h b/coregrind/pub_core_libcprint.h index 5de2dc5fa6..ef086da9be 100644 --- a/coregrind/pub_core_libcprint.h +++ b/coregrind/pub_core_libcprint.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_libcproc.h b/coregrind/pub_core_libcproc.h index 88cbc476b1..a4c0511089 100644 --- a/coregrind/pub_core_libcproc.h +++ b/coregrind/pub_core_libcproc.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_libcsetjmp.h b/coregrind/pub_core_libcsetjmp.h index 830065eeb3..1f71acf29e 100644 --- a/coregrind/pub_core_libcsetjmp.h +++ b/coregrind/pub_core_libcsetjmp.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2010-2012 Mozilla Inc + Copyright (C) 2010-2013 Mozilla Inc This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/pub_core_libcsignal.h b/coregrind/pub_core_libcsignal.h index 6c02967053..8e94902f1b 100644 --- a/coregrind/pub_core_libcsignal.h +++ b/coregrind/pub_core_libcsignal.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_mach.h b/coregrind/pub_core_mach.h index 53e7c6e1ee..038747c2d4 100644 --- a/coregrind/pub_core_mach.h +++ b/coregrind/pub_core_mach.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Apple Inc. + Copyright (C) 2005-2013 Apple Inc. Greg Parker gparker@apple.com This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_machine.h b/coregrind/pub_core_machine.h index 5652779f0f..3666d28258 100644 --- a/coregrind/pub_core_machine.h +++ b/coregrind/pub_core_machine.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_mallocfree.h b/coregrind/pub_core_mallocfree.h index 4bbc9fffa7..657ec7fea4 100644 --- a/coregrind/pub_core_mallocfree.h +++ b/coregrind/pub_core_mallocfree.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_options.h b/coregrind/pub_core_options.h index 7554722085..c2363efaad 100644 --- a/coregrind/pub_core_options.h +++ b/coregrind/pub_core_options.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_oset.h b/coregrind/pub_core_oset.h index 2606122726..51a6921dcb 100644 --- a/coregrind/pub_core_oset.h +++ b/coregrind/pub_core_oset.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Nicholas Nethercote + Copyright (C) 2005-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_redir.h b/coregrind/pub_core_redir.h index 1956a10350..d8325b27b7 100644 --- a/coregrind/pub_core_redir.h +++ b/coregrind/pub_core_redir.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_replacemalloc.h b/coregrind/pub_core_replacemalloc.h index 44c0241e59..bbcbf8d7f8 100644 --- a/coregrind/pub_core_replacemalloc.h +++ b/coregrind/pub_core_replacemalloc.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_sbprofile.h b/coregrind/pub_core_sbprofile.h index d5d61273a8..69f484733c 100644 --- a/coregrind/pub_core_sbprofile.h +++ b/coregrind/pub_core_sbprofile.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2012-2012 Mozilla Foundation + Copyright (C) 2012-2013 Mozilla Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/coregrind/pub_core_scheduler.h b/coregrind/pub_core_scheduler.h index c011312c32..6b24aeb8a4 100644 --- a/coregrind/pub_core_scheduler.h +++ b/coregrind/pub_core_scheduler.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_seqmatch.h b/coregrind/pub_core_seqmatch.h index 58325df76f..6ac52c10f5 100644 --- a/coregrind/pub_core_seqmatch.h +++ b/coregrind/pub_core_seqmatch.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 OpenWorks Ltd + Copyright (C) 2008-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_sigframe.h b/coregrind/pub_core_sigframe.h index 214a976717..b1f385c5fa 100644 --- a/coregrind/pub_core_sigframe.h +++ b/coregrind/pub_core_sigframe.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_signals.h b/coregrind/pub_core_signals.h index b130bbcd9d..dd92a2b938 100644 --- a/coregrind/pub_core_signals.h +++ b/coregrind/pub_core_signals.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_sparsewa.h b/coregrind/pub_core_sparsewa.h index c871a2aff0..68c32b0d2c 100644 --- a/coregrind/pub_core_sparsewa.h +++ b/coregrind/pub_core_sparsewa.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 OpenWorks Ltd + Copyright (C) 2008-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_stacks.h b/coregrind/pub_core_stacks.h index 4f342f4b18..71bdfcaa93 100644 --- a/coregrind/pub_core_stacks.h +++ b/coregrind/pub_core_stacks.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_stacktrace.h b/coregrind/pub_core_stacktrace.h index ace9b58e2b..478e67c4c1 100644 --- a/coregrind/pub_core_stacktrace.h +++ b/coregrind/pub_core_stacktrace.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_syscall.h b/coregrind/pub_core_syscall.h index 6f2eb08bfd..877404948d 100644 --- a/coregrind/pub_core_syscall.h +++ b/coregrind/pub_core_syscall.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_syswrap.h b/coregrind/pub_core_syswrap.h index 890d80ec58..f722f3768a 100644 --- a/coregrind/pub_core_syswrap.h +++ b/coregrind/pub_core_syswrap.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_threadstate.h b/coregrind/pub_core_threadstate.h index cfe2121130..64a08a7b73 100644 --- a/coregrind/pub_core_threadstate.h +++ b/coregrind/pub_core_threadstate.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_tooliface.h b/coregrind/pub_core_tooliface.h index bc11ffd002..39c67f051e 100644 --- a/coregrind/pub_core_tooliface.h +++ b/coregrind/pub_core_tooliface.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_trampoline.h b/coregrind/pub_core_trampoline.h index 69f8037ee4..5134184572 100644 --- a/coregrind/pub_core_trampoline.h +++ b/coregrind/pub_core_trampoline.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_translate.h b/coregrind/pub_core_translate.h index bdac572d68..81e547c1d0 100644 --- a/coregrind/pub_core_translate.h +++ b/coregrind/pub_core_translate.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_transtab.h b/coregrind/pub_core_transtab.h index 837487419b..ce1bfe719c 100644 --- a/coregrind/pub_core_transtab.h +++ b/coregrind/pub_core_transtab.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_transtab_asm.h b/coregrind/pub_core_transtab_asm.h index c3b3855eb2..ab3acc14f9 100644 --- a/coregrind/pub_core_transtab_asm.h +++ b/coregrind/pub_core_transtab_asm.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_ume.h b/coregrind/pub_core_ume.h index 2903b590f2..4aaad7ec50 100644 --- a/coregrind/pub_core_ume.h +++ b/coregrind/pub_core_ume.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_vki.h b/coregrind/pub_core_vki.h index 8b849b03e2..0b10ea4147 100644 --- a/coregrind/pub_core_vki.h +++ b/coregrind/pub_core_vki.h @@ -8,11 +8,11 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org - Copyright (C) 2005-2012 Nicholas Nethercote + Copyright (C) 2005-2013 Nicholas Nethercote njn@valgrind.org - Copyright (C) 2006-2012 OpenWorks LLP + Copyright (C) 2006-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_vkiscnums.h b/coregrind/pub_core_vkiscnums.h index e2d6e233ca..4ceb625c8d 100644 --- a/coregrind/pub_core_vkiscnums.h +++ b/coregrind/pub_core_vkiscnums.h @@ -7,11 +7,11 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org - Copyright (C) 2005-2012 Nicholas Nethercote + Copyright (C) 2005-2013 Nicholas Nethercote njn@valgrind.org - Copyright (C) 2006-2012 OpenWorks LLP + Copyright (C) 2006-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_vkiscnums_asm.h b/coregrind/pub_core_vkiscnums_asm.h index 6b52acb773..284c050358 100644 --- a/coregrind/pub_core_vkiscnums_asm.h +++ b/coregrind/pub_core_vkiscnums_asm.h @@ -7,11 +7,11 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org - Copyright (C) 2005-2012 Nicholas Nethercote + Copyright (C) 2005-2013 Nicholas Nethercote njn@valgrind.org - Copyright (C) 2006-2012 OpenWorks LLP + Copyright (C) 2006-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/pub_core_wordfm.h b/coregrind/pub_core_wordfm.h index 8a71059038..c720216a71 100644 --- a/coregrind/pub_core_wordfm.h +++ b/coregrind/pub_core_wordfm.h @@ -9,13 +9,13 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2007-2012 Julian Seward + Copyright (C) 2007-2013 Julian Seward jseward@acm.org This code is based on previous work by Nicholas Nethercote (coregrind/m_oset.c) which is - Copyright (C) 2005-2012 Nicholas Nethercote + Copyright (C) 2005-2013 Nicholas Nethercote njn@valgrind.org which in turn was derived partially from: diff --git a/coregrind/pub_core_xarray.h b/coregrind/pub_core_xarray.h index b69dffbfb9..a7fab9711d 100644 --- a/coregrind/pub_core_xarray.h +++ b/coregrind/pub_core_xarray.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2007-2012 OpenWorks LLP + Copyright (C) 2007-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/coregrind/vg_preloaded.c b/coregrind/vg_preloaded.c index 3195e19cbd..263c61476c 100644 --- a/coregrind/vg_preloaded.c +++ b/coregrind/vg_preloaded.c @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/coregrind/vgdb.c b/coregrind/vgdb.c index c3bfcba99d..485ad5d1a6 100644 --- a/coregrind/vgdb.c +++ b/coregrind/vgdb.c @@ -6,7 +6,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2011-2012 Philippe Waroquiers + Copyright (C) 2011-2013 Philippe Waroquiers This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/drd/drd_strmem_intercepts.c b/drd/drd_strmem_intercepts.c index 90af72da53..d77e824b3f 100644 --- a/drd/drd_strmem_intercepts.c +++ b/drd/drd_strmem_intercepts.c @@ -9,7 +9,7 @@ from memchec/mc_replace_strmem.c, which has the following copyright notice: - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/exp-bbv/bbv_main.c b/exp-bbv/bbv_main.c index b73bd1bf0d..ea5a00fd50 100644 --- a/exp-bbv/bbv_main.c +++ b/exp-bbv/bbv_main.c @@ -6,10 +6,10 @@ This file is part of BBV, a Valgrind tool for generating SimPoint basic block vectors. - Copyright (C) 2006-2012 Vince Weaver + Copyright (C) 2006-2013 Vince Weaver vince _at_ csl.cornell.edu - pcfile code is Copyright (C) 2006-2012 Oriol Prat + pcfile code is Copyright (C) 2006-2013 Oriol Prat oriol.prat _at _ bsc.es This program is free software; you can redistribute it and/or @@ -608,7 +608,7 @@ static void bbv_pre_clo_init(void) VG_(details_version) (NULL); VG_(details_description) ("a SimPoint basic block vector generator"); VG_(details_copyright_author)( - "Copyright (C) 2006-2012 Vince Weaver"); + "Copyright (C) 2006-2013 Vince Weaver"); VG_(details_bug_reports_to) (VG_BUGS_TO); VG_(basic_tool_funcs) (bbv_post_clo_init, diff --git a/exp-dhat/dh_main.c b/exp-dhat/dh_main.c index ef45cea3ed..4142a90522 100644 --- a/exp-dhat/dh_main.c +++ b/exp-dhat/dh_main.c @@ -7,7 +7,7 @@ This file is part of DHAT, a Valgrind tool for profiling the heap usage of programs. - Copyright (C) 2010-2012 Mozilla Inc + Copyright (C) 2010-2013 Mozilla Inc This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -1349,7 +1349,7 @@ static void dh_pre_clo_init(void) VG_(details_version) (NULL); VG_(details_description) ("a dynamic heap analysis tool"); VG_(details_copyright_author)( - "Copyright (C) 2010-2012, and GNU GPL'd, by Mozilla Inc"); + "Copyright (C) 2010-2013, and GNU GPL'd, by Mozilla Inc"); VG_(details_bug_reports_to) (VG_BUGS_TO); // Basic functions. diff --git a/exp-sgcheck/h_intercepts.c b/exp-sgcheck/h_intercepts.c index f8b4eca6fe..1c8f1b12a7 100644 --- a/exp-sgcheck/h_intercepts.c +++ b/exp-sgcheck/h_intercepts.c @@ -7,7 +7,7 @@ This file is part of Ptrcheck, a Valgrind tool for checking pointer use in programs. - Copyright (C) 2003-2012 Nicholas Nethercote + Copyright (C) 2003-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/exp-sgcheck/h_main.c b/exp-sgcheck/h_main.c index ac71d8bf5c..ea0fed88cc 100644 --- a/exp-sgcheck/h_main.c +++ b/exp-sgcheck/h_main.c @@ -11,12 +11,12 @@ Initial version (Annelid): - Copyright (C) 2003-2012 Nicholas Nethercote + Copyright (C) 2003-2013 Nicholas Nethercote njn@valgrind.org Valgrind-3.X port: - Copyright (C) 2008-2012 OpenWorks Ltd + Copyright (C) 2008-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/exp-sgcheck/h_main.h b/exp-sgcheck/h_main.h index 7572b74f50..e41cc2edc1 100644 --- a/exp-sgcheck/h_main.h +++ b/exp-sgcheck/h_main.h @@ -9,9 +9,9 @@ This file is part of Ptrcheck, a Valgrind tool for checking pointer use in programs. - Copyright (C) 2003-2012 Nicholas Nethercote + Copyright (C) 2003-2013 Nicholas Nethercote njn@valgrind.org - Copyright (C) 2008-2012 OpenWorks Ltd + Copyright (C) 2008-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/exp-sgcheck/pc_common.c b/exp-sgcheck/pc_common.c index 1ea8784152..741d54ab93 100644 --- a/exp-sgcheck/pc_common.c +++ b/exp-sgcheck/pc_common.c @@ -9,7 +9,7 @@ This file is part of Ptrcheck, a Valgrind tool for checking pointer use in programs. - Copyright (C) 2008-2012 OpenWorks Ltd + Copyright (C) 2008-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/exp-sgcheck/pc_common.h b/exp-sgcheck/pc_common.h index 3a0fb5ac17..f783d4b3e1 100644 --- a/exp-sgcheck/pc_common.h +++ b/exp-sgcheck/pc_common.h @@ -9,7 +9,7 @@ This file is part of Ptrcheck, a Valgrind tool for checking pointer use in programs. - Copyright (C) 2008-2012 OpenWorks Ltd + Copyright (C) 2008-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/exp-sgcheck/pc_main.c b/exp-sgcheck/pc_main.c index 84c1fce78a..17ae72815a 100644 --- a/exp-sgcheck/pc_main.c +++ b/exp-sgcheck/pc_main.c @@ -9,7 +9,7 @@ This file is part of Ptrcheck, a Valgrind tool for checking pointer use in programs. - Copyright (C) 2008-2012 OpenWorks Ltd + Copyright (C) 2008-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or @@ -73,7 +73,7 @@ static void pc_pre_clo_init(void) VG_(details_description) ("a stack and global array " "overrun detector"); VG_(details_copyright_author)( - "Copyright (C) 2003-2012, and GNU GPL'd, by OpenWorks Ltd et al."); + "Copyright (C) 2003-2013, and GNU GPL'd, by OpenWorks Ltd et al."); VG_(details_bug_reports_to) (VG_BUGS_TO); VG_(details_avg_translation_sizeB) ( 496 ); diff --git a/exp-sgcheck/sg_main.c b/exp-sgcheck/sg_main.c index f5a3133ce5..92b1f675e5 100644 --- a/exp-sgcheck/sg_main.c +++ b/exp-sgcheck/sg_main.c @@ -9,7 +9,7 @@ This file is part of Ptrcheck, a Valgrind tool for checking pointer use in programs. - Copyright (C) 2008-2012 OpenWorks Ltd + Copyright (C) 2008-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/exp-sgcheck/sg_main.h b/exp-sgcheck/sg_main.h index 43dddec6dc..36034de055 100644 --- a/exp-sgcheck/sg_main.h +++ b/exp-sgcheck/sg_main.h @@ -9,7 +9,7 @@ This file is part of Ptrcheck, a Valgrind tool for checking pointer use in programs. - Copyright (C) 2008-2012 OpenWorks Ltd + Copyright (C) 2008-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/helgrind/helgrind.h b/helgrind/helgrind.h index 5e155f047e..f777c7b8a1 100644 --- a/helgrind/helgrind.h +++ b/helgrind/helgrind.h @@ -11,7 +11,7 @@ This file is part of Helgrind, a Valgrind tool for detecting errors in threaded programs. - Copyright (C) 2007-2012 OpenWorks LLP + Copyright (C) 2007-2013 OpenWorks LLP info@open-works.co.uk Redistribution and use in source and binary forms, with or without diff --git a/helgrind/hg_basics.c b/helgrind/hg_basics.c index 9da1cd438a..742c5236d7 100644 --- a/helgrind/hg_basics.c +++ b/helgrind/hg_basics.c @@ -8,7 +8,7 @@ This file is part of Helgrind, a Valgrind tool for detecting errors in threaded programs. - Copyright (C) 2007-2012 OpenWorks Ltd + Copyright (C) 2007-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/helgrind/hg_basics.h b/helgrind/hg_basics.h index 93f015486a..737cfa0eba 100644 --- a/helgrind/hg_basics.h +++ b/helgrind/hg_basics.h @@ -8,7 +8,7 @@ This file is part of Helgrind, a Valgrind tool for detecting errors in threaded programs. - Copyright (C) 2007-2012 OpenWorks Ltd + Copyright (C) 2007-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/helgrind/hg_errors.c b/helgrind/hg_errors.c index 45ba4c81ed..b19ddd4709 100644 --- a/helgrind/hg_errors.c +++ b/helgrind/hg_errors.c @@ -8,7 +8,7 @@ This file is part of Helgrind, a Valgrind tool for detecting errors in threaded programs. - Copyright (C) 2007-2012 OpenWorks Ltd + Copyright (C) 2007-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/helgrind/hg_errors.h b/helgrind/hg_errors.h index a73fa151aa..6da3ed748c 100644 --- a/helgrind/hg_errors.h +++ b/helgrind/hg_errors.h @@ -8,7 +8,7 @@ This file is part of Helgrind, a Valgrind tool for detecting errors in threaded programs. - Copyright (C) 2007-2012 OpenWorks Ltd + Copyright (C) 2007-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/helgrind/hg_intercepts.c b/helgrind/hg_intercepts.c index f18e1616bb..05b709ce24 100644 --- a/helgrind/hg_intercepts.c +++ b/helgrind/hg_intercepts.c @@ -8,7 +8,7 @@ This file is part of Helgrind, a Valgrind tool for detecting errors in threaded programs. - Copyright (C) 2007-2012 OpenWorks LLP + Copyright (C) 2007-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/helgrind/hg_lock_n_thread.c b/helgrind/hg_lock_n_thread.c index 73c8647e2d..c2a26efe08 100644 --- a/helgrind/hg_lock_n_thread.c +++ b/helgrind/hg_lock_n_thread.c @@ -8,7 +8,7 @@ This file is part of Helgrind, a Valgrind tool for detecting errors in threaded programs. - Copyright (C) 2007-2012 OpenWorks Ltd + Copyright (C) 2007-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/helgrind/hg_lock_n_thread.h b/helgrind/hg_lock_n_thread.h index 7f8524f863..762619178d 100644 --- a/helgrind/hg_lock_n_thread.h +++ b/helgrind/hg_lock_n_thread.h @@ -8,7 +8,7 @@ This file is part of Helgrind, a Valgrind tool for detecting errors in threaded programs. - Copyright (C) 2007-2012 OpenWorks Ltd + Copyright (C) 2007-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/helgrind/hg_main.c b/helgrind/hg_main.c index 40fbbe3fd8..0e10ed2e71 100644 --- a/helgrind/hg_main.c +++ b/helgrind/hg_main.c @@ -8,10 +8,10 @@ This file is part of Helgrind, a Valgrind tool for detecting errors in threaded programs. - Copyright (C) 2007-2012 OpenWorks LLP + Copyright (C) 2007-2013 OpenWorks LLP info@open-works.co.uk - Copyright (C) 2007-2012 Apple, Inc. + Copyright (C) 2007-2013 Apple, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -5268,7 +5268,7 @@ static void hg_pre_clo_init ( void ) VG_(details_version) (NULL); VG_(details_description) ("a thread error detector"); VG_(details_copyright_author)( - "Copyright (C) 2007-2012, and GNU GPL'd, by OpenWorks LLP et al."); + "Copyright (C) 2007-2013, and GNU GPL'd, by OpenWorks LLP et al."); VG_(details_bug_reports_to) (VG_BUGS_TO); VG_(details_avg_translation_sizeB) ( 320 ); diff --git a/helgrind/hg_wordset.c b/helgrind/hg_wordset.c index 45b714e2bf..63066f1a14 100644 --- a/helgrind/hg_wordset.c +++ b/helgrind/hg_wordset.c @@ -8,7 +8,7 @@ This file is part of Helgrind, a Valgrind tool for detecting errors in threaded programs. - Copyright (C) 2007-2012 OpenWorks LLP + Copyright (C) 2007-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/helgrind/hg_wordset.h b/helgrind/hg_wordset.h index 945836b9b9..e7a3b5e44c 100644 --- a/helgrind/hg_wordset.h +++ b/helgrind/hg_wordset.h @@ -8,7 +8,7 @@ This file is part of Helgrind, a Valgrind tool for detecting errors in threaded programs. - Copyright (C) 2007-2012 OpenWorks LLP + Copyright (C) 2007-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/helgrind/libhb.h b/helgrind/libhb.h index 589b789c4e..656bc94d71 100644 --- a/helgrind/libhb.h +++ b/helgrind/libhb.h @@ -9,7 +9,7 @@ This file is part of LibHB, a library for implementing and checking the happens-before relationship in concurrent programs. - Copyright (C) 2008-2012 OpenWorks Ltd + Copyright (C) 2008-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/helgrind/libhb_core.c b/helgrind/libhb_core.c index 8f30fe5f24..d2047c6643 100644 --- a/helgrind/libhb_core.c +++ b/helgrind/libhb_core.c @@ -9,7 +9,7 @@ This file is part of LibHB, a library for implementing and checking the happens-before relationship in concurrent programs. - Copyright (C) 2008-2012 OpenWorks Ltd + Copyright (C) 2008-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_aspacehl.h b/include/pub_tool_aspacehl.h index 2ec3ccfa58..00709c930b 100644 --- a/include/pub_tool_aspacehl.h +++ b/include/pub_tool_aspacehl.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2009-2012 Julian Seward + Copyright (C) 2009-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_aspacemgr.h b/include/pub_tool_aspacemgr.h index 4924b6142f..d109618937 100644 --- a/include/pub_tool_aspacemgr.h +++ b/include/pub_tool_aspacemgr.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_basics.h b/include/pub_tool_basics.h index 22e2461d00..ce977f3f9b 100644 --- a/include/pub_tool_basics.h +++ b/include/pub_tool_basics.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_basics_asm.h b/include/pub_tool_basics_asm.h index d96f41bf33..0173e6852d 100644 --- a/include/pub_tool_basics_asm.h +++ b/include/pub_tool_basics_asm.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_clientstate.h b/include/pub_tool_clientstate.h index 86d3d4779a..c5f5b84b82 100644 --- a/include/pub_tool_clientstate.h +++ b/include/pub_tool_clientstate.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_clreq.h b/include/pub_tool_clreq.h index cd8f4c98ca..94005ca153 100644 --- a/include/pub_tool_clreq.h +++ b/include/pub_tool_clreq.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_debuginfo.h b/include/pub_tool_debuginfo.h index 9421551cd6..ede860fbcc 100644 --- a/include/pub_tool_debuginfo.h +++ b/include/pub_tool_debuginfo.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_errormgr.h b/include/pub_tool_errormgr.h index fcb5e09ef7..26339ab49b 100644 --- a/include/pub_tool_errormgr.h +++ b/include/pub_tool_errormgr.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_execontext.h b/include/pub_tool_execontext.h index b7932fd818..a78d66e441 100644 --- a/include/pub_tool_execontext.h +++ b/include/pub_tool_execontext.h @@ -6,7 +6,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_gdbserver.h b/include/pub_tool_gdbserver.h index c9890ab2a1..0c2545f178 100644 --- a/include/pub_tool_gdbserver.h +++ b/include/pub_tool_gdbserver.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2011-2012 Philippe Waroquiers + Copyright (C) 2011-2013 Philippe Waroquiers This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/include/pub_tool_hashtable.h b/include/pub_tool_hashtable.h index 91fe5f2dfa..fc721ba8f2 100644 --- a/include/pub_tool_hashtable.h +++ b/include/pub_tool_hashtable.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Nicholas Nethercote + Copyright (C) 2005-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_libcassert.h b/include/pub_tool_libcassert.h index f30010438c..413d6ba173 100644 --- a/include/pub_tool_libcassert.h +++ b/include/pub_tool_libcassert.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_libcbase.h b/include/pub_tool_libcbase.h index 2800dd6ecd..0aea3ace73 100644 --- a/include/pub_tool_libcbase.h +++ b/include/pub_tool_libcbase.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_libcfile.h b/include/pub_tool_libcfile.h index 58e0331dba..eed404fc7b 100644 --- a/include/pub_tool_libcfile.h +++ b/include/pub_tool_libcfile.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_libcprint.h b/include/pub_tool_libcprint.h index 775e4f5730..70cd38143f 100644 --- a/include/pub_tool_libcprint.h +++ b/include/pub_tool_libcprint.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_libcproc.h b/include/pub_tool_libcproc.h index d55b9599f9..585cbd7ad7 100644 --- a/include/pub_tool_libcproc.h +++ b/include/pub_tool_libcproc.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_libcsetjmp.h b/include/pub_tool_libcsetjmp.h index 475d16ec26..4bd32700cd 100644 --- a/include/pub_tool_libcsetjmp.h +++ b/include/pub_tool_libcsetjmp.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2010-2012 Mozilla Inc + Copyright (C) 2010-2013 Mozilla Inc This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/include/pub_tool_libcsignal.h b/include/pub_tool_libcsignal.h index 48794bed52..8ca9420f26 100644 --- a/include/pub_tool_libcsignal.h +++ b/include/pub_tool_libcsignal.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_machine.h b/include/pub_tool_machine.h index 8029b633cd..d5d9ab0cb1 100644 --- a/include/pub_tool_machine.h +++ b/include/pub_tool_machine.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_mallocfree.h b/include/pub_tool_mallocfree.h index e182d1bf5c..7ddb32e72e 100644 --- a/include/pub_tool_mallocfree.h +++ b/include/pub_tool_mallocfree.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_options.h b/include/pub_tool_options.h index 08d6dba2db..7b80d3dc4e 100644 --- a/include/pub_tool_options.h +++ b/include/pub_tool_options.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_oset.h b/include/pub_tool_oset.h index 29d0254233..f696d64fec 100644 --- a/include/pub_tool_oset.h +++ b/include/pub_tool_oset.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Nicholas Nethercote + Copyright (C) 2005-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_poolalloc.h b/include/pub_tool_poolalloc.h index f829f0938d..ee173cd693 100644 --- a/include/pub_tool_poolalloc.h +++ b/include/pub_tool_poolalloc.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2011-2012 OpenWorks LLP info@open-works.co.uk, + Copyright (C) 2011-2013 OpenWorks LLP info@open-works.co.uk, Philippe Waroquiers philippe.waroquiers@skynet.be This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_redir.h b/include/pub_tool_redir.h index e4ea7c04e0..4f5f7538c7 100644 --- a/include/pub_tool_redir.h +++ b/include/pub_tool_redir.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_replacemalloc.h b/include/pub_tool_replacemalloc.h index e0905737b1..bab3b4fb83 100644 --- a/include/pub_tool_replacemalloc.h +++ b/include/pub_tool_replacemalloc.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_seqmatch.h b/include/pub_tool_seqmatch.h index 28cae8ae3c..f3cb4b64c0 100644 --- a/include/pub_tool_seqmatch.h +++ b/include/pub_tool_seqmatch.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 OpenWorks Ltd + Copyright (C) 2008-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_signals.h b/include/pub_tool_signals.h index 3d34d8390a..ad79ec0ed0 100644 --- a/include/pub_tool_signals.h +++ b/include/pub_tool_signals.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_sparsewa.h b/include/pub_tool_sparsewa.h index 4330569968..a37edf7ce9 100644 --- a/include/pub_tool_sparsewa.h +++ b/include/pub_tool_sparsewa.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 OpenWorks Ltd + Copyright (C) 2008-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_stacktrace.h b/include/pub_tool_stacktrace.h index 235dcd6042..a5df2ce524 100644 --- a/include/pub_tool_stacktrace.h +++ b/include/pub_tool_stacktrace.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_threadstate.h b/include/pub_tool_threadstate.h index f48a18c86c..7220fca073 100644 --- a/include/pub_tool_threadstate.h +++ b/include/pub_tool_threadstate.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_tooliface.h b/include/pub_tool_tooliface.h index 3d6fc9880e..a346196ac9 100644 --- a/include/pub_tool_tooliface.h +++ b/include/pub_tool_tooliface.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_vki.h b/include/pub_tool_vki.h index 53a9ee535f..2966ce37ea 100644 --- a/include/pub_tool_vki.h +++ b/include/pub_tool_vki.h @@ -8,11 +8,11 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org - Copyright (C) 2005-2012 Nicholas Nethercote + Copyright (C) 2005-2013 Nicholas Nethercote njn@valgrind.org - Copyright (C) 2006-2012 OpenWorks LLP + Copyright (C) 2006-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_vkiscnums.h b/include/pub_tool_vkiscnums.h index 8e03079247..fbaf59ae88 100644 --- a/include/pub_tool_vkiscnums.h +++ b/include/pub_tool_vkiscnums.h @@ -7,9 +7,9 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Nicholas Nethercote + Copyright (C) 2005-2013 Nicholas Nethercote njn@valgrind.org - Copyright (C) 2006-2012 OpenWorks LLP + Copyright (C) 2006-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_vkiscnums_asm.h b/include/pub_tool_vkiscnums_asm.h index 3e907e702b..eccb6643f4 100644 --- a/include/pub_tool_vkiscnums_asm.h +++ b/include/pub_tool_vkiscnums_asm.h @@ -7,9 +7,9 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Nicholas Nethercote + Copyright (C) 2005-2013 Nicholas Nethercote njn@valgrind.org - Copyright (C) 2006-2012 OpenWorks LLP + Copyright (C) 2006-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/include/pub_tool_wordfm.h b/include/pub_tool_wordfm.h index 341adebbe2..f0fdb58d02 100644 --- a/include/pub_tool_wordfm.h +++ b/include/pub_tool_wordfm.h @@ -9,13 +9,13 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2007-2012 Julian Seward + Copyright (C) 2007-2013 Julian Seward jseward@acm.org This code is based on previous work by Nicholas Nethercote (coregrind/m_oset.c) which is - Copyright (C) 2005-2012 Nicholas Nethercote + Copyright (C) 2005-2013 Nicholas Nethercote njn@valgrind.org which in turn was derived partially from: diff --git a/include/pub_tool_xarray.h b/include/pub_tool_xarray.h index 16f036bf3b..3817b2046c 100644 --- a/include/pub_tool_xarray.h +++ b/include/pub_tool_xarray.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2007-2012 OpenWorks LLP + Copyright (C) 2007-2013 OpenWorks LLP info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/include/valgrind.h b/include/valgrind.h index 1c7a5ee6fe..3c2098cd7b 100644 --- a/include/valgrind.h +++ b/include/valgrind.h @@ -12,7 +12,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward. All rights reserved. + Copyright (C) 2000-2013 Julian Seward. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/include/vki/vki-amd64-linux.h b/include/vki/vki-amd64-linux.h index 77c49c9c03..b7212c3aa9 100644 --- a/include/vki/vki-amd64-linux.h +++ b/include/vki/vki-amd64-linux.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-arm-linux.h b/include/vki/vki-arm-linux.h index 20044ae170..a81ce99aea 100644 --- a/include/vki/vki-arm-linux.h +++ b/include/vki/vki-arm-linux.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-darwin.h b/include/vki/vki-darwin.h index 6c4b55950d..34b0da744b 100644 --- a/include/vki/vki-darwin.h +++ b/include/vki/vki-darwin.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2007-2012 Apple Inc. + Copyright (C) 2007-2013 Apple Inc. Greg Parker gparker@apple.com This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-linux.h b/include/vki/vki-linux.h index b68862a889..b3e2bd6105 100644 --- a/include/vki/vki-linux.h +++ b/include/vki/vki-linux.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-mips32-linux.h b/include/vki/vki-mips32-linux.h index b99aef4f29..ee537197f0 100644 --- a/include/vki/vki-mips32-linux.h +++ b/include/vki/vki-mips32-linux.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2010-2012 RT-RK + Copyright (C) 2010-2013 RT-RK mips-valgrind@rt-rk.com This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-posixtypes-amd64-linux.h b/include/vki/vki-posixtypes-amd64-linux.h index 4d0f1d4590..e0573e01f3 100644 --- a/include/vki/vki-posixtypes-amd64-linux.h +++ b/include/vki/vki-posixtypes-amd64-linux.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-posixtypes-arm-linux.h b/include/vki/vki-posixtypes-arm-linux.h index d20c7ceaf7..7f16420957 100644 --- a/include/vki/vki-posixtypes-arm-linux.h +++ b/include/vki/vki-posixtypes-arm-linux.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-posixtypes-mips32-linux.h b/include/vki/vki-posixtypes-mips32-linux.h index 45d3ebfe94..d90d99488f 100644 --- a/include/vki/vki-posixtypes-mips32-linux.h +++ b/include/vki/vki-posixtypes-mips32-linux.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2010-2012 RT-RK + Copyright (C) 2010-2013 RT-RK mips-valgrind@rt-rk.com This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-posixtypes-ppc32-linux.h b/include/vki/vki-posixtypes-ppc32-linux.h index bf93eaeb70..29b0018e5e 100644 --- a/include/vki/vki-posixtypes-ppc32-linux.h +++ b/include/vki/vki-posixtypes-ppc32-linux.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Julian Seward + Copyright (C) 2005-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-posixtypes-ppc64-linux.h b/include/vki/vki-posixtypes-ppc64-linux.h index 6697758945..c3d17f2f9a 100644 --- a/include/vki/vki-posixtypes-ppc64-linux.h +++ b/include/vki/vki-posixtypes-ppc64-linux.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Julian Seward + Copyright (C) 2005-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-posixtypes-s390x-linux.h b/include/vki/vki-posixtypes-s390x-linux.h index f2c9e53d96..b5ea23889f 100644 --- a/include/vki/vki-posixtypes-s390x-linux.h +++ b/include/vki/vki-posixtypes-s390x-linux.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright IBM Corp. 2010-2012 + Copyright IBM Corp. 2010-2013 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/include/vki/vki-posixtypes-x86-linux.h b/include/vki/vki-posixtypes-x86-linux.h index e6c6235544..16e74a73d9 100644 --- a/include/vki/vki-posixtypes-x86-linux.h +++ b/include/vki/vki-posixtypes-x86-linux.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-ppc32-linux.h b/include/vki/vki-ppc32-linux.h index 420d19c81e..481ee2cf87 100644 --- a/include/vki/vki-ppc32-linux.h +++ b/include/vki/vki-ppc32-linux.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Julian Seward + Copyright (C) 2005-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-ppc64-linux.h b/include/vki/vki-ppc64-linux.h index 146e779f51..b72039c32a 100644 --- a/include/vki/vki-ppc64-linux.h +++ b/include/vki/vki-ppc64-linux.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Julian Seward + Copyright (C) 2005-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-s390x-linux.h b/include/vki/vki-s390x-linux.h index caed21bcea..857ec2f27f 100644 --- a/include/vki/vki-s390x-linux.h +++ b/include/vki/vki-s390x-linux.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright IBM Corp. 2010-2012 + Copyright IBM Corp. 2010-2013 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/include/vki/vki-scnums-amd64-linux.h b/include/vki/vki-scnums-amd64-linux.h index 85ade42bb3..9d0b1eaef4 100644 --- a/include/vki/vki-scnums-amd64-linux.h +++ b/include/vki/vki-scnums-amd64-linux.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-scnums-arm-linux.h b/include/vki/vki-scnums-arm-linux.h index 6a629cf31a..0a570dd39d 100644 --- a/include/vki/vki-scnums-arm-linux.h +++ b/include/vki/vki-scnums-arm-linux.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2008-2012 Evan Geller + Copyright (C) 2008-2013 Evan Geller gaze@bea.ms This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-scnums-darwin.h b/include/vki/vki-scnums-darwin.h index 0e3801beec..f01c7d6c24 100644 --- a/include/vki/vki-scnums-darwin.h +++ b/include/vki/vki-scnums-darwin.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2007-2012 Apple Inc. + Copyright (C) 2007-2013 Apple Inc. Greg Parker gparker@apple.com This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-scnums-mips32-linux.h b/include/vki/vki-scnums-mips32-linux.h index 4dafbc37d1..0af6fcf313 100644 --- a/include/vki/vki-scnums-mips32-linux.h +++ b/include/vki/vki-scnums-mips32-linux.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2010-2012 RT-RK + Copyright (C) 2010-2013 RT-RK mips-valgrind@rt-rk.com This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-scnums-ppc32-linux.h b/include/vki/vki-scnums-ppc32-linux.h index e865eb54df..f3159efb97 100644 --- a/include/vki/vki-scnums-ppc32-linux.h +++ b/include/vki/vki-scnums-ppc32-linux.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Julian Seward + Copyright (C) 2005-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-scnums-ppc64-linux.h b/include/vki/vki-scnums-ppc64-linux.h index f7030f2b2a..b7a164ad64 100644 --- a/include/vki/vki-scnums-ppc64-linux.h +++ b/include/vki/vki-scnums-ppc64-linux.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2005-2012 Julian Seward + Copyright (C) 2005-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-scnums-s390x-linux.h b/include/vki/vki-scnums-s390x-linux.h index 3ccb65dabd..b17645ce7c 100644 --- a/include/vki/vki-scnums-s390x-linux.h +++ b/include/vki/vki-scnums-s390x-linux.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright IBM Corp. 2010-2012 + Copyright IBM Corp. 2010-2013 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as diff --git a/include/vki/vki-scnums-x86-linux.h b/include/vki/vki-scnums-x86-linux.h index a1a3be61ee..ad7c424533 100644 --- a/include/vki/vki-scnums-x86-linux.h +++ b/include/vki/vki-scnums-x86-linux.h @@ -8,7 +8,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/include/vki/vki-x86-linux.h b/include/vki/vki-x86-linux.h index 3839ee7c0c..155470a6e9 100644 --- a/include/vki/vki-x86-linux.h +++ b/include/vki/vki-x86-linux.h @@ -7,7 +7,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/lackey/lk_main.c b/lackey/lk_main.c index aca12f0621..9af280d9b3 100644 --- a/lackey/lk_main.c +++ b/lackey/lk_main.c @@ -7,7 +7,7 @@ This file is part of Lackey, an example Valgrind tool that does some simple program measurement and tracing. - Copyright (C) 2002-2012 Nicholas Nethercote + Copyright (C) 2002-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or @@ -1050,7 +1050,7 @@ static void lk_pre_clo_init(void) VG_(details_version) (NULL); VG_(details_description) ("an example Valgrind tool"); VG_(details_copyright_author)( - "Copyright (C) 2002-2012, and GNU GPL'd, by Nicholas Nethercote."); + "Copyright (C) 2002-2013, and GNU GPL'd, by Nicholas Nethercote."); VG_(details_bug_reports_to) (VG_BUGS_TO); VG_(details_avg_translation_sizeB) ( 200 ); diff --git a/massif/ms_main.c b/massif/ms_main.c index 8ce620d3c4..b7e56bea84 100644 --- a/massif/ms_main.c +++ b/massif/ms_main.c @@ -6,7 +6,7 @@ This file is part of Massif, a Valgrind tool for profiling memory usage of programs. - Copyright (C) 2003-2012 Nicholas Nethercote + Copyright (C) 2003-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or @@ -2573,7 +2573,7 @@ static void ms_pre_clo_init(void) VG_(details_version) (NULL); VG_(details_description) ("a heap profiler"); VG_(details_copyright_author)( - "Copyright (C) 2003-2012, and GNU GPL'd, by Nicholas Nethercote"); + "Copyright (C) 2003-2013, and GNU GPL'd, by Nicholas Nethercote"); VG_(details_bug_reports_to) (VG_BUGS_TO); VG_(details_avg_translation_sizeB) ( 330 ); diff --git a/memcheck/mc_errors.c b/memcheck/mc_errors.c index b4b82a83f4..5f1dd1e828 100644 --- a/memcheck/mc_errors.c +++ b/memcheck/mc_errors.c @@ -8,7 +8,7 @@ This file is part of MemCheck, a heavyweight Valgrind tool for detecting memory errors. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/memcheck/mc_include.h b/memcheck/mc_include.h index a1c9a3d54b..012f53954b 100644 --- a/memcheck/mc_include.h +++ b/memcheck/mc_include.h @@ -8,7 +8,7 @@ This file is part of MemCheck, a heavyweight Valgrind tool for detecting memory errors. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/memcheck/mc_leakcheck.c b/memcheck/mc_leakcheck.c index 8bfd02ae9d..670d89f986 100644 --- a/memcheck/mc_leakcheck.c +++ b/memcheck/mc_leakcheck.c @@ -7,7 +7,7 @@ This file is part of MemCheck, a heavyweight Valgrind tool for detecting memory errors. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/memcheck/mc_machine.c b/memcheck/mc_machine.c index d9865ac431..accc780ff3 100644 --- a/memcheck/mc_machine.c +++ b/memcheck/mc_machine.c @@ -9,7 +9,7 @@ This file is part of MemCheck, a heavyweight Valgrind tool for detecting memory errors. - Copyright (C) 2008-2012 OpenWorks Ltd + Copyright (C) 2008-2013 OpenWorks Ltd info@open-works.co.uk This program is free software; you can redistribute it and/or diff --git a/memcheck/mc_main.c b/memcheck/mc_main.c index f6e1e01020..060272a69f 100644 --- a/memcheck/mc_main.c +++ b/memcheck/mc_main.c @@ -9,7 +9,7 @@ This file is part of MemCheck, a heavyweight Valgrind tool for detecting memory errors. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or @@ -6678,7 +6678,7 @@ static void mc_pre_clo_init(void) VG_(details_version) (NULL); VG_(details_description) ("a memory error detector"); VG_(details_copyright_author)( - "Copyright (C) 2002-2012, and GNU GPL'd, by Julian Seward et al."); + "Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al."); VG_(details_bug_reports_to) (VG_BUGS_TO); VG_(details_avg_translation_sizeB) ( 640 ); diff --git a/memcheck/mc_malloc_wrappers.c b/memcheck/mc_malloc_wrappers.c index 144559fca8..c51ed8ffa9 100644 --- a/memcheck/mc_malloc_wrappers.c +++ b/memcheck/mc_malloc_wrappers.c @@ -8,7 +8,7 @@ This file is part of MemCheck, a heavyweight Valgrind tool for detecting memory errors. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/memcheck/mc_replace_strmem.c b/memcheck/mc_replace_strmem.c index ec837887cd..912b494543 100644 --- a/memcheck/mc_replace_strmem.c +++ b/memcheck/mc_replace_strmem.c @@ -9,7 +9,7 @@ This file is part of MemCheck, a heavyweight Valgrind tool for detecting memory errors. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/memcheck/mc_translate.c b/memcheck/mc_translate.c index 3476a1eb99..d4b703c2b0 100644 --- a/memcheck/mc_translate.c +++ b/memcheck/mc_translate.c @@ -8,7 +8,7 @@ This file is part of MemCheck, a heavyweight Valgrind tool for detecting memory errors. - Copyright (C) 2000-2012 Julian Seward + Copyright (C) 2000-2013 Julian Seward jseward@acm.org This program is free software; you can redistribute it and/or diff --git a/memcheck/memcheck.h b/memcheck/memcheck.h index fcc76446d9..3af0728f01 100644 --- a/memcheck/memcheck.h +++ b/memcheck/memcheck.h @@ -13,7 +13,7 @@ This file is part of MemCheck, a heavyweight Valgrind tool for detecting memory errors. - Copyright (C) 2000-2012 Julian Seward. All rights reserved. + Copyright (C) 2000-2013 Julian Seward. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/mpi/libmpiwrap.c b/mpi/libmpiwrap.c index c03393e75f..b2a964dc2f 100644 --- a/mpi/libmpiwrap.c +++ b/mpi/libmpiwrap.c @@ -18,7 +18,7 @@ This file is part of Valgrind, a dynamic binary instrumentation framework. - Copyright (C) 2006-2012 OpenWorks LLP. All rights reserved. + Copyright (C) 2006-2013 OpenWorks LLP. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/none/nl_main.c b/none/nl_main.c index 69e8e29ac2..c56b9b32f3 100644 --- a/none/nl_main.c +++ b/none/nl_main.c @@ -7,7 +7,7 @@ This file is part of Nulgrind, the minimal Valgrind tool, which does no instrumentation or analysis. - Copyright (C) 2002-2012 Nicholas Nethercote + Copyright (C) 2002-2013 Nicholas Nethercote njn@valgrind.org This program is free software; you can redistribute it and/or @@ -56,7 +56,7 @@ static void nl_pre_clo_init(void) VG_(details_version) (NULL); VG_(details_description) ("the minimal Valgrind tool"); VG_(details_copyright_author)( - "Copyright (C) 2002-2012, and GNU GPL'd, by Nicholas Nethercote."); + "Copyright (C) 2002-2013, and GNU GPL'd, by Nicholas Nethercote."); VG_(details_bug_reports_to) (VG_BUGS_TO); VG_(details_avg_translation_sizeB) ( 275 ); diff --git a/none/tests/cmdline1.stdout.exp b/none/tests/cmdline1.stdout.exp index 26f1e21c81..0216879f2b 100644 --- a/none/tests/cmdline1.stdout.exp +++ b/none/tests/cmdline1.stdout.exp @@ -111,9 +111,9 @@ usage: valgrind [options] prog-and-args Extra options read from ~/.valgrindrc, $VALGRIND_OPTS, ./.valgrindrc - Nulgrind is Copyright (C) 2002-2012, and GNU GPL'd, by Nicholas Nethercote. - Valgrind is Copyright (C) 2000-2012, and GNU GPL'd, by Julian Seward et al. - LibVEX is Copyright (C) 2004-2012, and GNU GPL'd, by OpenWorks LLP et al. + Nulgrind is Copyright (C) 2002-2013, and GNU GPL'd, by Nicholas Nethercote. + Valgrind is Copyright (C) 2000-2013, and GNU GPL'd, by Julian Seward et al. + LibVEX is Copyright (C) 2004-2013, and GNU GPL'd, by OpenWorks LLP et al. Bug reports, feedback, admiration, abuse, etc, to: www.valgrind.org. diff --git a/none/tests/cmdline2.stdout.exp b/none/tests/cmdline2.stdout.exp index f76a25ba08..5c4e8c0cac 100644 --- a/none/tests/cmdline2.stdout.exp +++ b/none/tests/cmdline2.stdout.exp @@ -172,9 +172,9 @@ usage: valgrind [options] prog-and-args Extra options read from ~/.valgrindrc, $VALGRIND_OPTS, ./.valgrindrc - Nulgrind is Copyright (C) 2002-2012, and GNU GPL'd, by Nicholas Nethercote. - Valgrind is Copyright (C) 2000-2012, and GNU GPL'd, by Julian Seward et al. - LibVEX is Copyright (C) 2004-2012, and GNU GPL'd, by OpenWorks LLP et al. + Nulgrind is Copyright (C) 2002-2013, and GNU GPL'd, by Nicholas Nethercote. + Valgrind is Copyright (C) 2000-2013, and GNU GPL'd, by Julian Seward et al. + LibVEX is Copyright (C) 2004-2013, and GNU GPL'd, by OpenWorks LLP et al. Bug reports, feedback, admiration, abuse, etc, to: www.valgrind.org. diff --git a/perf/tinycc.c b/perf/tinycc.c index d97bc33ded..e4ca37f32d 100644 --- a/perf/tinycc.c +++ b/perf/tinycc.c @@ -21285,7 +21285,7 @@ static int64_t getclock_us(void) void help(void) { - printf("tcc version " TCC_VERSION " - Tiny C Compiler - Copyright (C) 2001-2012 Fabrice Bellard\n" + printf("tcc version " TCC_VERSION " - Tiny C Compiler - Copyright (C) 2001-2013 Fabrice Bellard\n" "usage: tcc [-v] [-c] [-o outfile] [-Bdir] [-bench] [-Idir] [-Dsym[=val]] [-Usym]\n" " [-Wwarn] [-g] [-b] [-bt N] [-Ldir] [-llib] [-shared] [-static]\n" " [infile1 infile2...] [-run infile args...]\n"