Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Inglis2005-06-23 16:01:26 +0000
committerDavid Inglis2005-06-23 16:01:26 +0000
commit92cae3205af7d1fd606c5b4ad327930431baf3cb (patch)
treed6573ba3d2df36855cc13d672e6b56d7bb7fa78f /core/org.eclipse.cdt.core.qnx
parente470be863133ddccc100a4f060cbe7812f41fdc4 (diff)
downloadorg.eclipse.cdt-92cae3205af7d1fd606c5b4ad327930431baf3cb.tar.gz
org.eclipse.cdt-92cae3205af7d1fd606c5b4ad327930431baf3cb.tar.xz
org.eclipse.cdt-92cae3205af7d1fd606c5b4ad327930431baf3cb.zip
CPL to EPL transistion - license header update for QNX
Diffstat (limited to 'core/org.eclipse.cdt.core.qnx')
-rw-r--r--core/org.eclipse.cdt.core.qnx/library/pty/openpty.c13
-rw-r--r--core/org.eclipse.cdt.core.qnx/library/pty/openpty.h13
-rw-r--r--core/org.eclipse.cdt.core.qnx/library/pty/pty.c10
-rw-r--r--core/org.eclipse.cdt.core.qnx/library/pty/ptyio.c10
-rw-r--r--core/org.eclipse.cdt.core.qnx/library/spawner/iostream.c20
-rw-r--r--core/org.eclipse.cdt.core.qnx/library/spawner/openpty.c13
-rw-r--r--core/org.eclipse.cdt.core.qnx/library/spawner/openpty.h13
-rw-r--r--core/org.eclipse.cdt.core.qnx/library/spawner/spawner.c10
-rw-r--r--core/org.eclipse.cdt.core.qnx/src/org/eclipse/cdt/internal/core/qnx/ProcessInfo.java8
-rw-r--r--core/org.eclipse.cdt.core.qnx/src/org/eclipse/cdt/internal/core/qnx/ProcessList.java8
10 files changed, 84 insertions, 34 deletions
diff --git a/core/org.eclipse.cdt.core.qnx/library/pty/openpty.c b/core/org.eclipse.cdt.core.qnx/library/pty/openpty.c
index b1660a13b78..55f1fe35847 100644
--- a/core/org.eclipse.cdt.core.qnx/library/pty/openpty.c
+++ b/core/org.eclipse.cdt.core.qnx/library/pty/openpty.c
@@ -1,8 +1,13 @@
-/*
- * (c) Copyright QNX Software Systems Ltd. 2002.
- * All Rights Reserved.
+/*******************************************************************************
+ * Copyright (c) 2002 - 2005 QNX Software Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
*
- */
+ * Contributors:
+ * QNX Software Systems - initial API and implementation
+ *******************************************************************************/
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
diff --git a/core/org.eclipse.cdt.core.qnx/library/pty/openpty.h b/core/org.eclipse.cdt.core.qnx/library/pty/openpty.h
index fd7b7be1b2f..9d497d39eec 100644
--- a/core/org.eclipse.cdt.core.qnx/library/pty/openpty.h
+++ b/core/org.eclipse.cdt.core.qnx/library/pty/openpty.h
@@ -1,8 +1,13 @@
-/*
- * (c) Copyright QNX Software Systems Ltd. 2002.
- * All Rights Reserved.
+/*******************************************************************************
+ * Copyright (c) 2002 - 2005 QNX Software Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
*
- */
+ * Contributors:
+ * QNX Software Systems - initial API and implementation
+ *******************************************************************************/
#ifndef _OPENPTY_H
#define _OPENPTY_H
int ptym_open (char *pts_name);
diff --git a/core/org.eclipse.cdt.core.qnx/library/pty/pty.c b/core/org.eclipse.cdt.core.qnx/library/pty/pty.c
index 1ff87e17c7f..a8077b0a5ad 100644
--- a/core/org.eclipse.cdt.core.qnx/library/pty/pty.c
+++ b/core/org.eclipse.cdt.core.qnx/library/pty/pty.c
@@ -1,3 +1,13 @@
+/*******************************************************************************
+ * Copyright (c) 2002 - 2005 QNX Software Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * QNX Software Systems - initial API and implementation
+ *******************************************************************************/
#include "PTY.h"
#include "openpty.h"
diff --git a/core/org.eclipse.cdt.core.qnx/library/pty/ptyio.c b/core/org.eclipse.cdt.core.qnx/library/pty/ptyio.c
index 0024cf0a1b3..49e42793841 100644
--- a/core/org.eclipse.cdt.core.qnx/library/pty/ptyio.c
+++ b/core/org.eclipse.cdt.core.qnx/library/pty/ptyio.c
@@ -1,3 +1,13 @@
+/*******************************************************************************
+ * Copyright (c) 2002 - 2005 QNX Software Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * QNX Software Systems - initial API and implementation
+ *******************************************************************************/
#include <jni.h>
#include <stdio.h>
#include <PTYInputStream.h>
diff --git a/core/org.eclipse.cdt.core.qnx/library/spawner/iostream.c b/core/org.eclipse.cdt.core.qnx/library/spawner/iostream.c
index a840a1667b1..e04f9e085ec 100644
--- a/core/org.eclipse.cdt.core.qnx/library/spawner/iostream.c
+++ b/core/org.eclipse.cdt.core.qnx/library/spawner/iostream.c
@@ -1,14 +1,14 @@
-/* Copyright, 2002, QNX Software Systems Ltd. All Rights Reserved
-
- * This source code has been published by QNX Software Systems
- * Ltd. (QSSL). However, any use, reproduction, modification, distribution
- * or transfer of this software, or any software which includes or is based
- * upon any of this code, is only permitted if expressly authorized by a
- * written license agreement from QSSL. Contact the QNX Developer's Network
- * or contact QSSL's legal department for more information.
- *
+/*******************************************************************************
+ * Copyright (c) 2002 - 2005 QNX Software Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
*
- * iostream.c
+ * Contributors:
+ * QNX Software Systems - initial API and implementation
+ *******************************************************************************/
+/* iostream.c
*
* This is a JNI implementation of access to standard i/o streams
*/
diff --git a/core/org.eclipse.cdt.core.qnx/library/spawner/openpty.c b/core/org.eclipse.cdt.core.qnx/library/spawner/openpty.c
index b1660a13b78..55f1fe35847 100644
--- a/core/org.eclipse.cdt.core.qnx/library/spawner/openpty.c
+++ b/core/org.eclipse.cdt.core.qnx/library/spawner/openpty.c
@@ -1,8 +1,13 @@
-/*
- * (c) Copyright QNX Software Systems Ltd. 2002.
- * All Rights Reserved.
+/*******************************************************************************
+ * Copyright (c) 2002 - 2005 QNX Software Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
*
- */
+ * Contributors:
+ * QNX Software Systems - initial API and implementation
+ *******************************************************************************/
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
diff --git a/core/org.eclipse.cdt.core.qnx/library/spawner/openpty.h b/core/org.eclipse.cdt.core.qnx/library/spawner/openpty.h
index fd7b7be1b2f..9d497d39eec 100644
--- a/core/org.eclipse.cdt.core.qnx/library/spawner/openpty.h
+++ b/core/org.eclipse.cdt.core.qnx/library/spawner/openpty.h
@@ -1,8 +1,13 @@
-/*
- * (c) Copyright QNX Software Systems Ltd. 2002.
- * All Rights Reserved.
+/*******************************************************************************
+ * Copyright (c) 2002 - 2005 QNX Software Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
*
- */
+ * Contributors:
+ * QNX Software Systems - initial API and implementation
+ *******************************************************************************/
#ifndef _OPENPTY_H
#define _OPENPTY_H
int ptym_open (char *pts_name);
diff --git a/core/org.eclipse.cdt.core.qnx/library/spawner/spawner.c b/core/org.eclipse.cdt.core.qnx/library/spawner/spawner.c
index c6d638f7ab1..a2647642c81 100644
--- a/core/org.eclipse.cdt.core.qnx/library/spawner/spawner.c
+++ b/core/org.eclipse.cdt.core.qnx/library/spawner/spawner.c
@@ -1,3 +1,13 @@
+/*******************************************************************************
+ * Copyright (c) 2002 - 2005 QNX Software Systems and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * QNX Software Systems - initial API and implementation
+ *******************************************************************************/
#include <unistd.h>
#include <malloc.h>
#include <spawn.h>
diff --git a/core/org.eclipse.cdt.core.qnx/src/org/eclipse/cdt/internal/core/qnx/ProcessInfo.java b/core/org.eclipse.cdt.core.qnx/src/org/eclipse/cdt/internal/core/qnx/ProcessInfo.java
index c0108ba8ab7..ea16126755b 100644
--- a/core/org.eclipse.cdt.core.qnx/src/org/eclipse/cdt/internal/core/qnx/ProcessInfo.java
+++ b/core/org.eclipse.cdt.core.qnx/src/org/eclipse/cdt/internal/core/qnx/ProcessInfo.java
@@ -1,10 +1,10 @@
/*******************************************************************************
* Copyright (c) 2000, 2004 QNX Software Systems and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
* Contributors:
* QNX Software Systems - Initial API and implementation
*******************************************************************************/
diff --git a/core/org.eclipse.cdt.core.qnx/src/org/eclipse/cdt/internal/core/qnx/ProcessList.java b/core/org.eclipse.cdt.core.qnx/src/org/eclipse/cdt/internal/core/qnx/ProcessList.java
index d0dd038bdf1..7d0137f6a10 100644
--- a/core/org.eclipse.cdt.core.qnx/src/org/eclipse/cdt/internal/core/qnx/ProcessList.java
+++ b/core/org.eclipse.cdt.core.qnx/src/org/eclipse/cdt/internal/core/qnx/ProcessList.java
@@ -1,10 +1,10 @@
/*******************************************************************************
* Copyright (c) 2000, 2004 QNX Software Systems and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Common Public License v1.0
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/cpl-v10.html
- *
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
* Contributors:
* QNX Software Systems - Initial API and implementation
*******************************************************************************/

Back to the top