From 4e98693a5646d99e6cf13352d8ed916458423995 Mon Sep 17 00:00:00 2001 From: Martin Oberhuber Date: Mon, 10 Jun 2013 16:28:47 +0200 Subject: Bug 410348 - [releng][agent] Update Copyright Dates for the TCF Agent --- agent/cmake/build-gcc-debug.sh | 14 ++++++++++++++ agent/cmake/build-gcc-release.sh | 14 ++++++++++++++ agent/cmake/build-msvc-debug.bat | 14 ++++++++++++++ agent/cmake/build-msvc-release.bat | 14 ++++++++++++++ agent/machine/i386/tcf/cpudefs-mdep.c | 14 ++++++++++++++ agent/machine/i386/tcf/cpudefs-mdep.h | 14 ++++++++++++++ agent/machine/i386/tcf/dwarfreloc-mdep.h | 2 +- agent/machine/i686/tcf/cpudefs-mdep.c | 14 ++++++++++++++ agent/machine/i686/tcf/cpudefs-mdep.h | 14 ++++++++++++++ agent/machine/x86_64/tcf/dwarfreloc-mdep.h | 2 +- agent/system/Cygwin/tcf/regset.h | 2 +- agent/system/Darwin/tcf/regset.h | 2 +- agent/system/FreeBSD/tcf/regset.h | 2 +- agent/system/MinGW/tcf/regset.h | 2 +- agent/system/Msys/tcf/regset.h | 2 +- agent/system/VxWorks/tcf/context-vxworks.c | 2 +- agent/system/VxWorks/tcf/context-vxworks.h | 2 +- agent/system/VxWorks/tcf/regset.h | 2 +- agent/system/Windows/tcf/context-win32.h | 2 +- agent/system/Windows/tcf/pthreads-win32.h | 2 +- agent/system/Windows/tcf/regset.h | 2 +- agent/tcf/framework/asyncreq.h | 2 +- agent/tcf/framework/base64.h | 2 +- agent/tcf/framework/channel_pipe.h | 2 +- agent/tcf/framework/channel_tcp.h | 2 +- agent/tcf/framework/context.c | 2 +- agent/tcf/framework/errors.h | 2 +- agent/tcf/framework/events.h | 2 +- agent/tcf/framework/exceptions.c | 2 +- agent/tcf/framework/exceptions.h | 2 +- agent/tcf/framework/inputbuf.h | 2 +- agent/tcf/framework/ip_ifc.c | 2 +- agent/tcf/framework/ip_ifc.h | 2 +- agent/tcf/framework/json.h | 2 +- agent/tcf/framework/mdep-inet.h | 2 +- agent/tcf/framework/mdep-threads.h | 2 +- agent/tcf/framework/myalloc.h | 2 +- agent/tcf/framework/outputbuf.c | 2 +- agent/tcf/framework/outputbuf.h | 2 +- agent/tcf/framework/pid-hash.h | 2 +- agent/tcf/framework/plugins.c | 2 +- agent/tcf/framework/plugins.h | 2 +- agent/tcf/framework/protocol.h | 2 +- agent/tcf/framework/proxy.c | 2 +- agent/tcf/framework/proxy.h | 2 +- agent/tcf/framework/signames.c | 2 +- agent/tcf/framework/signames.h | 2 +- agent/tcf/framework/tcf.h | 2 +- agent/tcf/framework/trace.h | 2 +- agent/tcf/framework/waitpid.c | 2 +- agent/tcf/framework/waitpid.h | 2 +- agent/tcf/main/cmdline.h | 2 +- agent/tcf/main/server.c | 2 +- agent/tcf/main/services-ext.h | 2 +- agent/tcf/main/services.h | 2 +- agent/tcf/main/test.c | 2 +- agent/tcf/services/diagnostics.h | 2 +- agent/tcf/services/discovery.h | 2 +- agent/tcf/services/discovery_udp.h | 2 +- agent/tcf/services/dwarf.h | 2 +- agent/tcf/services/dwarfecomp.h | 2 +- agent/tcf/services/dwarfframe.h | 2 +- agent/tcf/services/dwarfio.h | 2 +- agent/tcf/services/dwarfreloc-ext.h | 2 +- agent/tcf/services/dwarfreloc.h | 2 +- agent/tcf/services/elf-loader.h | 2 +- agent/tcf/services/expressions.h | 2 +- agent/tcf/services/filesystem.h | 2 +- agent/tcf/services/linenumbers.c | 2 +- agent/tcf/services/memorymap.h | 2 +- agent/tcf/services/memoryservice.h | 2 +- agent/tcf/services/processes.h | 2 +- agent/tcf/services/registers.h | 2 +- agent/tcf/services/sysmon.c | 2 +- agent/tcf/services/sysmon.h | 2 +- agent/tcf/services/terminals.h | 2 +- examples/daytime/tcf/config.h | 2 +- examples/daytime/tcf/main/services-ext.h | 2 +- examples/daytime/tcf/services/daytime.c | 2 +- examples/daytime/tcf/services/daytime.h | 2 +- 80 files changed, 184 insertions(+), 72 deletions(-) diff --git a/agent/cmake/build-gcc-debug.sh b/agent/cmake/build-gcc-debug.sh index c90b2452..809346f8 100644 --- a/agent/cmake/build-gcc-debug.sh +++ b/agent/cmake/build-gcc-debug.sh @@ -1,4 +1,18 @@ #!/bin/sh +#******************************************************************************* +# Copyright (c) 2011, 2013 Wind River Systems, Inc. and others. +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Eclipse Public License v1.0 +# and Eclipse Distribution License v1.0 which accompany this distribution. +# The Eclipse Public License is available at +# http://www.eclipse.org/legal/epl-v10.html +# and the Eclipse Distribution License is available at +# http://www.eclipse.org/org/documents/edl-v10.php. +# You may elect to redistribute this code under either of these licenses. +# +# Contributors: +# Wind River Systems - initial API and implementation +#******************************************************************************* [ -d gcc-debug ] || mkdir gcc-debug cd gcc-debug [ -f Makefile ] || cmake -DCMAKE_BUILD_TYPE=Debug -G "Unix Makefiles" ../.. diff --git a/agent/cmake/build-gcc-release.sh b/agent/cmake/build-gcc-release.sh index 9dde42ff..bafd7fd5 100755 --- a/agent/cmake/build-gcc-release.sh +++ b/agent/cmake/build-gcc-release.sh @@ -1,4 +1,18 @@ #!/bin/sh +#******************************************************************************* +# Copyright (c) 2011, 2013 Wind River Systems, Inc. and others. +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Eclipse Public License v1.0 +# and Eclipse Distribution License v1.0 which accompany this distribution. +# The Eclipse Public License is available at +# http://www.eclipse.org/legal/epl-v10.html +# and the Eclipse Distribution License is available at +# http://www.eclipse.org/org/documents/edl-v10.php. +# You may elect to redistribute this code under either of these licenses. +# +# Contributors: +# Wind River Systems - initial API and implementation +#******************************************************************************* [ -d gcc-release ] || mkdir gcc-release cd gcc-release [ -f Makefile ] || cmake -DCMAKE_BUILD_TYPE=Release -G "Unix Makefiles" ../.. diff --git a/agent/cmake/build-msvc-debug.bat b/agent/cmake/build-msvc-debug.bat index 2e411bbd..4c54e477 100755 --- a/agent/cmake/build-msvc-debug.bat +++ b/agent/cmake/build-msvc-debug.bat @@ -1,3 +1,17 @@ +@rem *************************************************************************** +@rem Copyright (c) 2011 Wind River Systems, Inc. and others. +@rem All rights reserved. This program and the accompanying materials +@rem are made available under the terms of the Eclipse Public License v1.0 +@rem and Eclipse Distribution License v1.0 which accompany this distribution. +@rem The Eclipse Public License is available at +@rem http://www.eclipse.org/legal/epl-v10.html +@rem and the Eclipse Distribution License is available at +@rem http://www.eclipse.org/org/documents/edl-v10.php. +@rem You may elect to redistribute this code under either of these licenses. +@rem +@rem Contributors: +@rem Wind River Systems - initial API and implementation +@rem *************************************************************************** @echo off REM The Visual C++ compiler must be in your path REM This is handled automatically with CDT's Visual C++ integration diff --git a/agent/cmake/build-msvc-release.bat b/agent/cmake/build-msvc-release.bat index 3ff47eb6..2ffe6cb2 100755 --- a/agent/cmake/build-msvc-release.bat +++ b/agent/cmake/build-msvc-release.bat @@ -1,3 +1,17 @@ +@rem *************************************************************************** +@rem Copyright (c) 2011 Wind River Systems, Inc. and others. +@rem All rights reserved. This program and the accompanying materials +@rem are made available under the terms of the Eclipse Public License v1.0 +@rem and Eclipse Distribution License v1.0 which accompany this distribution. +@rem The Eclipse Public License is available at +@rem http://www.eclipse.org/legal/epl-v10.html +@rem and the Eclipse Distribution License is available at +@rem http://www.eclipse.org/org/documents/edl-v10.php. +@rem You may elect to redistribute this code under either of these licenses. +@rem +@rem Contributors: +@rem Wind River Systems - initial API and implementation +@rem *************************************************************************** @echo off REM The Visual C++ compiler must be in your path REM This is handled automatically with CDT's Visual C++ integration diff --git a/agent/machine/i386/tcf/cpudefs-mdep.c b/agent/machine/i386/tcf/cpudefs-mdep.c index bba2ad71..3c3789ee 100644 --- a/agent/machine/i386/tcf/cpudefs-mdep.c +++ b/agent/machine/i386/tcf/cpudefs-mdep.c @@ -1 +1,15 @@ +/******************************************************************************* + * Copyright (c) 2012, 2013 Wind River Systems, Inc. and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * and Eclipse Distribution License v1.0 which accompany this distribution. + * The Eclipse Public License is available at + * http://www.eclipse.org/legal/epl-v10.html + * and the Eclipse Distribution License is available at + * http://www.eclipse.org/org/documents/edl-v10.php. + * You may elect to redistribute this code under either of these licenses. + * + * Contributors: + * Wind River Systems - initial API and implementation + *******************************************************************************/ #include "machine/x86_64/tcf/cpudefs-mdep.c" diff --git a/agent/machine/i386/tcf/cpudefs-mdep.h b/agent/machine/i386/tcf/cpudefs-mdep.h index 3429d460..9e4372d1 100644 --- a/agent/machine/i386/tcf/cpudefs-mdep.h +++ b/agent/machine/i386/tcf/cpudefs-mdep.h @@ -1 +1,15 @@ +/******************************************************************************* + * Copyright (c) 2011 Wind River Systems, Inc. and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * and Eclipse Distribution License v1.0 which accompany this distribution. + * The Eclipse Public License is available at + * http://www.eclipse.org/legal/epl-v10.html + * and the Eclipse Distribution License is available at + * http://www.eclipse.org/org/documents/edl-v10.php. + * You may elect to redistribute this code under either of these licenses. + * + * Contributors: + * Wind River Systems - initial API and implementation + *******************************************************************************/ #include "machine/x86_64/tcf/cpudefs-mdep.h" diff --git a/agent/machine/i386/tcf/dwarfreloc-mdep.h b/agent/machine/i386/tcf/dwarfreloc-mdep.h index 5d73a6db..55f5645b 100644 --- a/agent/machine/i386/tcf/dwarfreloc-mdep.h +++ b/agent/machine/i386/tcf/dwarfreloc-mdep.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2010, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/machine/i686/tcf/cpudefs-mdep.c b/agent/machine/i686/tcf/cpudefs-mdep.c index bba2ad71..3c3789ee 100644 --- a/agent/machine/i686/tcf/cpudefs-mdep.c +++ b/agent/machine/i686/tcf/cpudefs-mdep.c @@ -1 +1,15 @@ +/******************************************************************************* + * Copyright (c) 2012, 2013 Wind River Systems, Inc. and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * and Eclipse Distribution License v1.0 which accompany this distribution. + * The Eclipse Public License is available at + * http://www.eclipse.org/legal/epl-v10.html + * and the Eclipse Distribution License is available at + * http://www.eclipse.org/org/documents/edl-v10.php. + * You may elect to redistribute this code under either of these licenses. + * + * Contributors: + * Wind River Systems - initial API and implementation + *******************************************************************************/ #include "machine/x86_64/tcf/cpudefs-mdep.c" diff --git a/agent/machine/i686/tcf/cpudefs-mdep.h b/agent/machine/i686/tcf/cpudefs-mdep.h index 3429d460..9e4372d1 100644 --- a/agent/machine/i686/tcf/cpudefs-mdep.h +++ b/agent/machine/i686/tcf/cpudefs-mdep.h @@ -1 +1,15 @@ +/******************************************************************************* + * Copyright (c) 2011 Wind River Systems, Inc. and others. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * and Eclipse Distribution License v1.0 which accompany this distribution. + * The Eclipse Public License is available at + * http://www.eclipse.org/legal/epl-v10.html + * and the Eclipse Distribution License is available at + * http://www.eclipse.org/org/documents/edl-v10.php. + * You may elect to redistribute this code under either of these licenses. + * + * Contributors: + * Wind River Systems - initial API and implementation + *******************************************************************************/ #include "machine/x86_64/tcf/cpudefs-mdep.h" diff --git a/agent/machine/x86_64/tcf/dwarfreloc-mdep.h b/agent/machine/x86_64/tcf/dwarfreloc-mdep.h index 8546945a..b383ff37 100644 --- a/agent/machine/x86_64/tcf/dwarfreloc-mdep.h +++ b/agent/machine/x86_64/tcf/dwarfreloc-mdep.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2010, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/system/Cygwin/tcf/regset.h b/agent/system/Cygwin/tcf/regset.h index 08e2895d..432cf59c 100644 --- a/agent/system/Cygwin/tcf/regset.h +++ b/agent/system/Cygwin/tcf/regset.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2009, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/system/Darwin/tcf/regset.h b/agent/system/Darwin/tcf/regset.h index 0422799e..6248f3b9 100644 --- a/agent/system/Darwin/tcf/regset.h +++ b/agent/system/Darwin/tcf/regset.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2009, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/system/FreeBSD/tcf/regset.h b/agent/system/FreeBSD/tcf/regset.h index add029bd..04308067 100644 --- a/agent/system/FreeBSD/tcf/regset.h +++ b/agent/system/FreeBSD/tcf/regset.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2009, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/system/MinGW/tcf/regset.h b/agent/system/MinGW/tcf/regset.h index fb4eab83..674ea6d9 100644 --- a/agent/system/MinGW/tcf/regset.h +++ b/agent/system/MinGW/tcf/regset.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2009, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/system/Msys/tcf/regset.h b/agent/system/Msys/tcf/regset.h index 61729743..c7877ef8 100644 --- a/agent/system/Msys/tcf/regset.h +++ b/agent/system/Msys/tcf/regset.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2009, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/system/VxWorks/tcf/context-vxworks.c b/agent/system/VxWorks/tcf/context-vxworks.c index 49e3e59f..95004b89 100644 --- a/agent/system/VxWorks/tcf/context-vxworks.c +++ b/agent/system/VxWorks/tcf/context-vxworks.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/system/VxWorks/tcf/context-vxworks.h b/agent/system/VxWorks/tcf/context-vxworks.h index 0fd81105..f5d9ab78 100644 --- a/agent/system/VxWorks/tcf/context-vxworks.h +++ b/agent/system/VxWorks/tcf/context-vxworks.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/system/VxWorks/tcf/regset.h b/agent/system/VxWorks/tcf/regset.h index 0a12cb92..a1082861 100644 --- a/agent/system/VxWorks/tcf/regset.h +++ b/agent/system/VxWorks/tcf/regset.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2009, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/system/Windows/tcf/context-win32.h b/agent/system/Windows/tcf/context-win32.h index 8c49751e..e1b8da72 100644 --- a/agent/system/Windows/tcf/context-win32.h +++ b/agent/system/Windows/tcf/context-win32.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/system/Windows/tcf/pthreads-win32.h b/agent/system/Windows/tcf/pthreads-win32.h index 5874d476..1e2722fe 100644 --- a/agent/system/Windows/tcf/pthreads-win32.h +++ b/agent/system/Windows/tcf/pthreads-win32.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011 Wind River Systems, Inc. and others. + * Copyright (c) 2011, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/system/Windows/tcf/regset.h b/agent/system/Windows/tcf/regset.h index 61729743..c7877ef8 100644 --- a/agent/system/Windows/tcf/regset.h +++ b/agent/system/Windows/tcf/regset.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2009, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/asyncreq.h b/agent/tcf/framework/asyncreq.h index 6e711016..a5b6fc24 100644 --- a/agent/tcf/framework/asyncreq.h +++ b/agent/tcf/framework/asyncreq.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/base64.h b/agent/tcf/framework/base64.h index 4eed26dd..03325762 100644 --- a/agent/tcf/framework/base64.h +++ b/agent/tcf/framework/base64.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/channel_pipe.h b/agent/tcf/framework/channel_pipe.h index f4c1937f..57fe9729 100644 --- a/agent/tcf/framework/channel_pipe.h +++ b/agent/tcf/framework/channel_pipe.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2010, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/channel_tcp.h b/agent/tcf/framework/channel_tcp.h index 9a8402de..1ca93f11 100644 --- a/agent/tcf/framework/channel_tcp.h +++ b/agent/tcf/framework/channel_tcp.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/context.c b/agent/tcf/framework/context.c index 9684890c..1ea801e9 100644 --- a/agent/tcf/framework/context.c +++ b/agent/tcf/framework/context.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2013 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/errors.h b/agent/tcf/framework/errors.h index 57b016d5..e39545ff 100644 --- a/agent/tcf/framework/errors.h +++ b/agent/tcf/framework/errors.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/events.h b/agent/tcf/framework/events.h index 0a2804ea..38f51b71 100644 --- a/agent/tcf/framework/events.h +++ b/agent/tcf/framework/events.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/exceptions.c b/agent/tcf/framework/exceptions.c index e5223f88..2dd3209d 100644 --- a/agent/tcf/framework/exceptions.c +++ b/agent/tcf/framework/exceptions.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/exceptions.h b/agent/tcf/framework/exceptions.h index 9f44ac20..ab5e22c0 100644 --- a/agent/tcf/framework/exceptions.h +++ b/agent/tcf/framework/exceptions.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/inputbuf.h b/agent/tcf/framework/inputbuf.h index 93bb55fa..14e9f1d6 100644 --- a/agent/tcf/framework/inputbuf.h +++ b/agent/tcf/framework/inputbuf.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/ip_ifc.c b/agent/tcf/framework/ip_ifc.c index f4bdc3f5..14b6e079 100644 --- a/agent/tcf/framework/ip_ifc.c +++ b/agent/tcf/framework/ip_ifc.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/ip_ifc.h b/agent/tcf/framework/ip_ifc.h index 4879dafa..460c37e6 100644 --- a/agent/tcf/framework/ip_ifc.h +++ b/agent/tcf/framework/ip_ifc.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/json.h b/agent/tcf/framework/json.h index 9ed0670c..567f5aad 100644 --- a/agent/tcf/framework/json.h +++ b/agent/tcf/framework/json.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2013 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/mdep-inet.h b/agent/tcf/framework/mdep-inet.h index 9586235c..bc611221 100644 --- a/agent/tcf/framework/mdep-inet.h +++ b/agent/tcf/framework/mdep-inet.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/mdep-threads.h b/agent/tcf/framework/mdep-threads.h index b17191aa..abd67a56 100644 --- a/agent/tcf/framework/mdep-threads.h +++ b/agent/tcf/framework/mdep-threads.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/myalloc.h b/agent/tcf/framework/myalloc.h index d4a61c33..73816313 100644 --- a/agent/tcf/framework/myalloc.h +++ b/agent/tcf/framework/myalloc.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/outputbuf.c b/agent/tcf/framework/outputbuf.c index c132bfe5..2bf3c321 100644 --- a/agent/tcf/framework/outputbuf.c +++ b/agent/tcf/framework/outputbuf.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (q) 2007, 2012 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/outputbuf.h b/agent/tcf/framework/outputbuf.h index 1eeb5394..c9bed4fd 100644 --- a/agent/tcf/framework/outputbuf.h +++ b/agent/tcf/framework/outputbuf.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/pid-hash.h b/agent/tcf/framework/pid-hash.h index d918929c..617c95fc 100644 --- a/agent/tcf/framework/pid-hash.h +++ b/agent/tcf/framework/pid-hash.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2013 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/plugins.c b/agent/tcf/framework/plugins.c index 6d3b71e2..785a51ad 100644 --- a/agent/tcf/framework/plugins.c +++ b/agent/tcf/framework/plugins.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2010 Philippe Proulx, École Polytechnique de Montréal + * Copyright (c) 2009, 2011 Philippe Proulx, École Polytechnique de Montréal * Michael Sills-Lavoie, École Polytechnique de Montréal * and others. All rights reserved. * This program and the accompanying materials diff --git a/agent/tcf/framework/plugins.h b/agent/tcf/framework/plugins.h index e22ffc1b..a5cf9db4 100644 --- a/agent/tcf/framework/plugins.h +++ b/agent/tcf/framework/plugins.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2010 Philippe Proulx, École Polytechnique de Montréal + * Copyright (c) 2009, 2011 Philippe Proulx, École Polytechnique de Montréal * Michael Sills-Lavoie, École Polytechnique de Montréal * and others. All rights reserved. * This program and the accompanying materials diff --git a/agent/tcf/framework/protocol.h b/agent/tcf/framework/protocol.h index aa2ca7d7..c8c15907 100644 --- a/agent/tcf/framework/protocol.h +++ b/agent/tcf/framework/protocol.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/proxy.c b/agent/tcf/framework/proxy.c index c0cfed98..7e58b9c3 100644 --- a/agent/tcf/framework/proxy.c +++ b/agent/tcf/framework/proxy.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/proxy.h b/agent/tcf/framework/proxy.h index 74894549..55cc8bbb 100644 --- a/agent/tcf/framework/proxy.h +++ b/agent/tcf/framework/proxy.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/signames.c b/agent/tcf/framework/signames.c index 90cea5c1..b894046e 100644 --- a/agent/tcf/framework/signames.c +++ b/agent/tcf/framework/signames.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2013 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/signames.h b/agent/tcf/framework/signames.h index 8b0d044c..0d588d17 100644 --- a/agent/tcf/framework/signames.h +++ b/agent/tcf/framework/signames.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2013 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/tcf.h b/agent/tcf/framework/tcf.h index a2a91976..4ff40d46 100644 --- a/agent/tcf/framework/tcf.h +++ b/agent/tcf/framework/tcf.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/trace.h b/agent/tcf/framework/trace.h index 9f8e547a..e79de6f5 100644 --- a/agent/tcf/framework/trace.h +++ b/agent/tcf/framework/trace.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/waitpid.c b/agent/tcf/framework/waitpid.c index cac079b2..6d8b6dca 100644 --- a/agent/tcf/framework/waitpid.c +++ b/agent/tcf/framework/waitpid.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2009, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/framework/waitpid.h b/agent/tcf/framework/waitpid.h index ff59ad9e..c82ed6a7 100644 --- a/agent/tcf/framework/waitpid.h +++ b/agent/tcf/framework/waitpid.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2009, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/main/cmdline.h b/agent/tcf/main/cmdline.h index abd95f0a..987006ba 100644 --- a/agent/tcf/main/cmdline.h +++ b/agent/tcf/main/cmdline.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/main/server.c b/agent/tcf/main/server.c index deababfd..c3abaaff 100644 --- a/agent/tcf/main/server.c +++ b/agent/tcf/main/server.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/main/services-ext.h b/agent/tcf/main/services-ext.h index cd4f6589..bce83eaf 100644 --- a/agent/tcf/main/services-ext.h +++ b/agent/tcf/main/services-ext.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/main/services.h b/agent/tcf/main/services.h index e7669853..21489711 100644 --- a/agent/tcf/main/services.h +++ b/agent/tcf/main/services.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/main/test.c b/agent/tcf/main/test.c index e48d1c7a..81b54dfa 100644 --- a/agent/tcf/main/test.c +++ b/agent/tcf/main/test.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/diagnostics.h b/agent/tcf/services/diagnostics.h index 324fb995..ac3680dd 100644 --- a/agent/tcf/services/diagnostics.h +++ b/agent/tcf/services/diagnostics.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/discovery.h b/agent/tcf/services/discovery.h index 5a79e61d..9db65b22 100644 --- a/agent/tcf/services/discovery.h +++ b/agent/tcf/services/discovery.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/discovery_udp.h b/agent/tcf/services/discovery_udp.h index fcdb3ec2..5e3a8f11 100644 --- a/agent/tcf/services/discovery_udp.h +++ b/agent/tcf/services/discovery_udp.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/dwarf.h b/agent/tcf/services/dwarf.h index a65be585..1c7affc5 100644 --- a/agent/tcf/services/dwarf.h +++ b/agent/tcf/services/dwarf.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 1996, 2011 Wind River Systems, Inc. and others. + * Copyright (c) 1996, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/dwarfecomp.h b/agent/tcf/services/dwarfecomp.h index cae6aec5..f5566117 100644 --- a/agent/tcf/services/dwarfecomp.h +++ b/agent/tcf/services/dwarfecomp.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011 Wind River Systems, Inc. and others. + * Copyright (c) 2011, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/dwarfframe.h b/agent/tcf/services/dwarfframe.h index 3cddbfdb..0258f884 100644 --- a/agent/tcf/services/dwarfframe.h +++ b/agent/tcf/services/dwarfframe.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/dwarfio.h b/agent/tcf/services/dwarfio.h index 83c6f3cf..f0f6fb4a 100644 --- a/agent/tcf/services/dwarfio.h +++ b/agent/tcf/services/dwarfio.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2006, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2006, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/dwarfreloc-ext.h b/agent/tcf/services/dwarfreloc-ext.h index 6ef00322..b92ac90b 100644 --- a/agent/tcf/services/dwarfreloc-ext.h +++ b/agent/tcf/services/dwarfreloc-ext.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011 Wind River Systems, Inc. and others. + * Copyright (c) 2011, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/dwarfreloc.h b/agent/tcf/services/dwarfreloc.h index e4f2525e..49c5c42f 100644 --- a/agent/tcf/services/dwarfreloc.h +++ b/agent/tcf/services/dwarfreloc.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2010, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/elf-loader.h b/agent/tcf/services/elf-loader.h index d1e2a5a9..bcc4718b 100644 --- a/agent/tcf/services/elf-loader.h +++ b/agent/tcf/services/elf-loader.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2011 Wind River Systems, Inc. and others. + * Copyright (c) 2011, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/expressions.h b/agent/tcf/services/expressions.h index 3e2a3af4..90bc1354 100644 --- a/agent/tcf/services/expressions.h +++ b/agent/tcf/services/expressions.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/filesystem.h b/agent/tcf/services/filesystem.h index 325a1f7b..3f63c372 100644 --- a/agent/tcf/services/filesystem.h +++ b/agent/tcf/services/filesystem.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/linenumbers.c b/agent/tcf/services/linenumbers.c index 63cc2a98..1cd841a5 100644 --- a/agent/tcf/services/linenumbers.c +++ b/agent/tcf/services/linenumbers.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/memorymap.h b/agent/tcf/services/memorymap.h index e7001bbe..a324d1a7 100644 --- a/agent/tcf/services/memorymap.h +++ b/agent/tcf/services/memorymap.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2009, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2009, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/memoryservice.h b/agent/tcf/services/memoryservice.h index b560eeb3..407e4c75 100644 --- a/agent/tcf/services/memoryservice.h +++ b/agent/tcf/services/memoryservice.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/processes.h b/agent/tcf/services/processes.h index 02bd26ec..80581908 100644 --- a/agent/tcf/services/processes.h +++ b/agent/tcf/services/processes.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/registers.h b/agent/tcf/services/registers.h index 9433fe0a..d880ae84 100644 --- a/agent/tcf/services/registers.h +++ b/agent/tcf/services/registers.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/sysmon.c b/agent/tcf/services/sysmon.c index baa13e64..e1ced1fe 100644 --- a/agent/tcf/services/sysmon.c +++ b/agent/tcf/services/sysmon.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2012 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/sysmon.h b/agent/tcf/services/sysmon.h index c3efe280..cc53b08b 100644 --- a/agent/tcf/services/sysmon.h +++ b/agent/tcf/services/sysmon.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/agent/tcf/services/terminals.h b/agent/tcf/services/terminals.h index b9ac618e..4380c9b7 100644 --- a/agent/tcf/services/terminals.h +++ b/agent/tcf/services/terminals.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2008 Wind River Systems, Inc. and others. + * Copyright (c) 2008, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/examples/daytime/tcf/config.h b/examples/daytime/tcf/config.h index b4ba0cb7..a3da92a2 100644 --- a/examples/daytime/tcf/config.h +++ b/examples/daytime/tcf/config.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2008 Wind River Systems, Inc. and others. + * Copyright (c) 2008, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/examples/daytime/tcf/main/services-ext.h b/examples/daytime/tcf/main/services-ext.h index 00083d39..d086211b 100644 --- a/examples/daytime/tcf/main/services-ext.h +++ b/examples/daytime/tcf/main/services-ext.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2007, 2010 Wind River Systems, Inc. and others. + * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/examples/daytime/tcf/services/daytime.c b/examples/daytime/tcf/services/daytime.c index c4108038..6367c261 100644 --- a/examples/daytime/tcf/services/daytime.c +++ b/examples/daytime/tcf/services/daytime.c @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2008 Wind River Systems, Inc. and others. + * Copyright (c) 2008, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. diff --git a/examples/daytime/tcf/services/daytime.h b/examples/daytime/tcf/services/daytime.h index 492544d7..85eb30a9 100644 --- a/examples/daytime/tcf/services/daytime.h +++ b/examples/daytime/tcf/services/daytime.h @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2008 Wind River Systems, Inc. and others. + * Copyright (c) 2008, 2011 Wind River Systems, Inc. and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * and Eclipse Distribution License v1.0 which accompany this distribution. -- cgit v1.2.3