From mboxrd@z Thu Jan 1 00:00:00 1970 From: compudj@krystal.dyndns.org (Mathieu Desnoyers) Date: Wed, 24 Feb 2010 17:50:12 -0500 Subject: [ltt-dev] [PATCH] Change synchronization code license to LGPLv3 In-Reply-To: <1267048127-14132-1-git-send-email-benjamin.poirier@polymtl.ca> References: <1267048127-14132-1-git-send-email-benjamin.poirier@polymtl.ca> Message-ID: <20100224225011.GA16645@Krystal> * Benjamin Poirier (benjamin.poirier at polymtl.ca) wrote: > This change is for compatibility with the Eclipse Public License (EPL), to > allow potential inclusion of synchronization code in the Tracing and > Monitoring Framework project of Eclipse. Hi Benjamin, Any particular reason why LGPLv3 is chosen rather than LGPLv2.1 like the rest of the project ? By the way, if we want to really allow external use of the synchronization code, then we should factor it out of the lttv/ directory and put it either under the lttv ltt/ directory (libltttraceread) or in its own directory, and build it as a separate library. Thanks, Mathieu > > Signed-off-by: Benjamin Poirier > --- > lttv/lttv/sync/README | 2 +- > lttv/lttv/sync/data_structures.c | 23 ++++++++++----------- > lttv/lttv/sync/data_structures.h | 23 ++++++++++----------- > lttv/lttv/sync/event_analysis.h | 23 ++++++++++----------- > lttv/lttv/sync/event_analysis_chull.c | 23 ++++++++++----------- > lttv/lttv/sync/event_analysis_chull.h | 23 ++++++++++----------- > lttv/lttv/sync/event_analysis_eval.c | 23 ++++++++++----------- > lttv/lttv/sync/event_analysis_eval.h | 23 ++++++++++----------- > lttv/lttv/sync/event_analysis_linreg.c | 23 ++++++++++----------- > lttv/lttv/sync/event_analysis_linreg.h | 23 ++++++++++----------- > lttv/lttv/sync/event_matching.h | 23 ++++++++++----------- > lttv/lttv/sync/event_matching_broadcast.c | 23 ++++++++++----------- > lttv/lttv/sync/event_matching_broadcast.h | 23 ++++++++++----------- > lttv/lttv/sync/event_matching_distributor.c | 23 ++++++++++----------- > lttv/lttv/sync/event_matching_distributor.h | 23 ++++++++++----------- > lttv/lttv/sync/event_matching_tcp.c | 23 ++++++++++----------- > lttv/lttv/sync/event_matching_tcp.h | 23 ++++++++++----------- > lttv/lttv/sync/event_processing.h | 23 ++++++++++----------- > lttv/lttv/sync/event_processing_lttng_common.c | 23 ++++++++++----------- > lttv/lttv/sync/event_processing_lttng_common.h | 23 ++++++++++----------- > lttv/lttv/sync/event_processing_lttng_null.c | 23 ++++++++++----------- > lttv/lttv/sync/event_processing_lttng_null.h | 23 ++++++++++----------- > lttv/lttv/sync/event_processing_lttng_standard.c | 23 ++++++++++----------- > lttv/lttv/sync/event_processing_lttng_standard.h | 23 ++++++++++----------- > lttv/lttv/sync/event_processing_text.c | 23 ++++++++++----------- > lttv/lttv/sync/event_processing_text.h | 23 ++++++++++----------- > lttv/lttv/sync/graph_functions.c | 23 ++++++++++----------- > lttv/lttv/sync/graph_functions.h | 23 ++++++++++----------- > lttv/lttv/sync/sync_chain.c | 23 ++++++++++----------- > lttv/lttv/sync/sync_chain.h | 23 ++++++++++----------- > lttv/lttv/sync/sync_chain_lttv.c | 23 ++++++++++----------- > lttv/lttv/sync/sync_chain_lttv.h | 23 ++++++++++----------- > lttv/lttv/sync/sync_chain_unittest.c | 23 ++++++++++----------- > 33 files changed, 353 insertions(+), 385 deletions(-) > > diff --git a/lttv/lttv/sync/README b/lttv/lttv/sync/README > index 01a09a8..fe242e9 100644 > --- a/lttv/lttv/sync/README > +++ b/lttv/lttv/sync/README > @@ -1,6 +1,6 @@ > Benjamin Poirier > benjamin.poirier at polymtl.ca > -2009 > +2009, 2010 > > + About time synchronization > This framework performs offline time synchronization. This means that the > diff --git a/lttv/lttv/sync/data_structures.c b/lttv/lttv/sync/data_structures.c > index 7a9b16d..b0af372 100644 > --- a/lttv/lttv/sync/data_structures.c > +++ b/lttv/lttv/sync/data_structures.c > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifdef HAVE_CONFIG_H > diff --git a/lttv/lttv/sync/data_structures.h b/lttv/lttv/sync/data_structures.h > index 0eab539..f12ac82 100644 > --- a/lttv/lttv/sync/data_structures.h > +++ b/lttv/lttv/sync/data_structures.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef DATA_STRUCTURES_H > diff --git a/lttv/lttv/sync/event_analysis.h b/lttv/lttv/sync/event_analysis.h > index 4c89aca..ef84a6b 100644 > --- a/lttv/lttv/sync/event_analysis.h > +++ b/lttv/lttv/sync/event_analysis.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef EVENT_ANALYSIS_H > diff --git a/lttv/lttv/sync/event_analysis_chull.c b/lttv/lttv/sync/event_analysis_chull.c > index 5be199b..4eeb1b4 100644 > --- a/lttv/lttv/sync/event_analysis_chull.c > +++ b/lttv/lttv/sync/event_analysis_chull.c > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > #define _ISOC99_SOURCE > > diff --git a/lttv/lttv/sync/event_analysis_chull.h b/lttv/lttv/sync/event_analysis_chull.h > index 07942cc..9ef349f 100644 > --- a/lttv/lttv/sync/event_analysis_chull.h > +++ b/lttv/lttv/sync/event_analysis_chull.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef EVENT_ANALYSIS_CHULL_H > diff --git a/lttv/lttv/sync/event_analysis_eval.c b/lttv/lttv/sync/event_analysis_eval.c > index 39aa7cd..a75ccf8 100644 > --- a/lttv/lttv/sync/event_analysis_eval.c > +++ b/lttv/lttv/sync/event_analysis_eval.c > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #define _GNU_SOURCE > diff --git a/lttv/lttv/sync/event_analysis_eval.h b/lttv/lttv/sync/event_analysis_eval.h > index 05d8660..91d20fd 100644 > --- a/lttv/lttv/sync/event_analysis_eval.h > +++ b/lttv/lttv/sync/event_analysis_eval.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef EVENT_ANALYSIS_EVAL_H > diff --git a/lttv/lttv/sync/event_analysis_linreg.c b/lttv/lttv/sync/event_analysis_linreg.c > index 7011f96..6bcf576 100644 > --- a/lttv/lttv/sync/event_analysis_linreg.c > +++ b/lttv/lttv/sync/event_analysis_linreg.c > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > // for INFINITY in math.h > diff --git a/lttv/lttv/sync/event_analysis_linreg.h b/lttv/lttv/sync/event_analysis_linreg.h > index 0eafe3f..a6f5213 100644 > --- a/lttv/lttv/sync/event_analysis_linreg.h > +++ b/lttv/lttv/sync/event_analysis_linreg.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef EVENT_ANALYSIS_LINREG_H > diff --git a/lttv/lttv/sync/event_matching.h b/lttv/lttv/sync/event_matching.h > index 28839f2..bb8a3c0 100644 > --- a/lttv/lttv/sync/event_matching.h > +++ b/lttv/lttv/sync/event_matching.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef EVENT_MATCHING_H > diff --git a/lttv/lttv/sync/event_matching_broadcast.c b/lttv/lttv/sync/event_matching_broadcast.c > index 1bc5d75..489988d 100644 > --- a/lttv/lttv/sync/event_matching_broadcast.c > +++ b/lttv/lttv/sync/event_matching_broadcast.c > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifdef HAVE_CONFIG_H > diff --git a/lttv/lttv/sync/event_matching_broadcast.h b/lttv/lttv/sync/event_matching_broadcast.h > index d9c4fbf..10ad238 100644 > --- a/lttv/lttv/sync/event_matching_broadcast.h > +++ b/lttv/lttv/sync/event_matching_broadcast.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef EVENT_MATCHING_BROADCAST_H > diff --git a/lttv/lttv/sync/event_matching_distributor.c b/lttv/lttv/sync/event_matching_distributor.c > index 6ea6c0f..7bfb5b1 100644 > --- a/lttv/lttv/sync/event_matching_distributor.c > +++ b/lttv/lttv/sync/event_matching_distributor.c > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifdef HAVE_CONFIG_H > diff --git a/lttv/lttv/sync/event_matching_distributor.h b/lttv/lttv/sync/event_matching_distributor.h > index e5e071a..a092883 100644 > --- a/lttv/lttv/sync/event_matching_distributor.h > +++ b/lttv/lttv/sync/event_matching_distributor.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef EVENT_MATCHING_DISTRIBUTOR_H > diff --git a/lttv/lttv/sync/event_matching_tcp.c b/lttv/lttv/sync/event_matching_tcp.c > index 5f3aa93..28cd5a5 100644 > --- a/lttv/lttv/sync/event_matching_tcp.c > +++ b/lttv/lttv/sync/event_matching_tcp.c > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifdef HAVE_CONFIG_H > diff --git a/lttv/lttv/sync/event_matching_tcp.h b/lttv/lttv/sync/event_matching_tcp.h > index 9ec887a..5cd07aa 100644 > --- a/lttv/lttv/sync/event_matching_tcp.h > +++ b/lttv/lttv/sync/event_matching_tcp.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef EVENT_MATCHING_TCP_H > diff --git a/lttv/lttv/sync/event_processing.h b/lttv/lttv/sync/event_processing.h > index 2ac26ae..e9712ed 100644 > --- a/lttv/lttv/sync/event_processing.h > +++ b/lttv/lttv/sync/event_processing.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef EVENT_PROCESSING_H > diff --git a/lttv/lttv/sync/event_processing_lttng_common.c b/lttv/lttv/sync/event_processing_lttng_common.c > index 4a982e0..6dfe171 100644 > --- a/lttv/lttv/sync/event_processing_lttng_common.c > +++ b/lttv/lttv/sync/event_processing_lttng_common.c > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifdef HAVE_CONFIG_H > diff --git a/lttv/lttv/sync/event_processing_lttng_common.h b/lttv/lttv/sync/event_processing_lttng_common.h > index 7a710f7..52a3d59 100644 > --- a/lttv/lttv/sync/event_processing_lttng_common.h > +++ b/lttv/lttv/sync/event_processing_lttng_common.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef EVENT_PROCESSING_LTTNG_COMMON_H > diff --git a/lttv/lttv/sync/event_processing_lttng_null.c b/lttv/lttv/sync/event_processing_lttng_null.c > index 3a91731..6c01a08 100644 > --- a/lttv/lttv/sync/event_processing_lttng_null.c > +++ b/lttv/lttv/sync/event_processing_lttng_null.c > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifdef HAVE_CONFIG_H > diff --git a/lttv/lttv/sync/event_processing_lttng_null.h b/lttv/lttv/sync/event_processing_lttng_null.h > index 8e01c58..3613a29 100644 > --- a/lttv/lttv/sync/event_processing_lttng_null.h > +++ b/lttv/lttv/sync/event_processing_lttng_null.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef EVENT_PROCESSING_LTTNG_NULL_H > diff --git a/lttv/lttv/sync/event_processing_lttng_standard.c b/lttv/lttv/sync/event_processing_lttng_standard.c > index 55806df..060091c 100644 > --- a/lttv/lttv/sync/event_processing_lttng_standard.c > +++ b/lttv/lttv/sync/event_processing_lttng_standard.c > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #define _ISOC99_SOURCE > diff --git a/lttv/lttv/sync/event_processing_lttng_standard.h b/lttv/lttv/sync/event_processing_lttng_standard.h > index 419aac2..6444cf8 100644 > --- a/lttv/lttv/sync/event_processing_lttng_standard.h > +++ b/lttv/lttv/sync/event_processing_lttng_standard.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef EVENT_PROCESSING_LTTNG_STANDARD_H > diff --git a/lttv/lttv/sync/event_processing_text.c b/lttv/lttv/sync/event_processing_text.c > index 238d658..196ff46 100644 > --- a/lttv/lttv/sync/event_processing_text.c > +++ b/lttv/lttv/sync/event_processing_text.c > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #define _GNU_SOURCE > diff --git a/lttv/lttv/sync/event_processing_text.h b/lttv/lttv/sync/event_processing_text.h > index 451b7b9..48bab47 100644 > --- a/lttv/lttv/sync/event_processing_text.h > +++ b/lttv/lttv/sync/event_processing_text.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef EVENT_PROCESSING_TEXT_H > diff --git a/lttv/lttv/sync/graph_functions.c b/lttv/lttv/sync/graph_functions.c > index 85adcf3..7132a74 100644 > --- a/lttv/lttv/sync/graph_functions.c > +++ b/lttv/lttv/sync/graph_functions.c > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifdef HAVE_CONFIG_H > diff --git a/lttv/lttv/sync/graph_functions.h b/lttv/lttv/sync/graph_functions.h > index 6551708..f4e8fe5 100644 > --- a/lttv/lttv/sync/graph_functions.h > +++ b/lttv/lttv/sync/graph_functions.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef GRAPH_FUNCTIONS_H > diff --git a/lttv/lttv/sync/sync_chain.c b/lttv/lttv/sync/sync_chain.c > index c32f341..b166776 100644 > --- a/lttv/lttv/sync/sync_chain.c > +++ b/lttv/lttv/sync/sync_chain.c > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifdef HAVE_CONFIG_H > diff --git a/lttv/lttv/sync/sync_chain.h b/lttv/lttv/sync/sync_chain.h > index 5d10a08..8102f40 100644 > --- a/lttv/lttv/sync/sync_chain.h > +++ b/lttv/lttv/sync/sync_chain.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef SYNC_CHAIN_H > diff --git a/lttv/lttv/sync/sync_chain_lttv.c b/lttv/lttv/sync/sync_chain_lttv.c > index 7fd0c6e..26c1fb3 100644 > --- a/lttv/lttv/sync/sync_chain_lttv.c > +++ b/lttv/lttv/sync/sync_chain_lttv.c > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifdef HAVE_CONFIG_H > diff --git a/lttv/lttv/sync/sync_chain_lttv.h b/lttv/lttv/sync/sync_chain_lttv.h > index 43e1650..a3f7b66 100644 > --- a/lttv/lttv/sync/sync_chain_lttv.h > +++ b/lttv/lttv/sync/sync_chain_lttv.h > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #ifndef SYNC_CHAIN_LTTV_H > diff --git a/lttv/lttv/sync/sync_chain_unittest.c b/lttv/lttv/sync/sync_chain_unittest.c > index 79b3b58..0f324dc 100644 > --- a/lttv/lttv/sync/sync_chain_unittest.c > +++ b/lttv/lttv/sync/sync_chain_unittest.c > @@ -1,19 +1,18 @@ > /* This file is part of the Linux Trace Toolkit viewer > - * Copyright (C) 2009 Benjamin Poirier > + * Copyright (C) 2009, 2010 Benjamin Poirier > * > - * This program is free software; you can redistribute it and/or modify > - * it under the terms of the GNU General Public License Version 2 as > - * published by the Free Software Foundation; > + * This program is free software: you can redistribute it and/or modify it > + * under the terms of the GNU Lesser General Public License as published by > + * the Free Software Foundation, either version 3 of the License, or (at your > + * option) any later version. > * > - * This program is distributed in the hope that it will be useful, > - * but WITHOUT ANY WARRANTY; without even the implied warranty of > - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the > - * GNU General Public License for more details. > + * This program is distributed in the hope that it will be useful, but WITHOUT > + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or > + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public > + * License for more details. > * > - * You should have received a copy of the GNU General Public License > - * along with this program; if not, write to the Free Software > - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, > - * MA 02111-1307, USA. > + * You should have received a copy of the GNU Lesser General Public License > + * along with this program. If not, see . > */ > > #define _GNU_SOURCE > -- > 1.6.6.1 > > > _______________________________________________ > ltt-dev mailing list > ltt-dev at lists.casi.polymtl.ca > http://lists.casi.polymtl.ca/cgi-bin/mailman/listinfo/ltt-dev > -- Mathieu Desnoyers Operating System Efficiency Consultant EfficiOS Inc. http://www.efficios.com