[jboss-cvs] JBoss Messaging SVN: r3742 - projects/jaio/trunk/jaio/native/src.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Feb 20 10:21:03 EST 2008


Author: clebert.suconic at jboss.com
Date: 2008-02-20 10:21:03 -0500 (Wed, 20 Feb 2008)
New Revision: 3742

Modified:
   projects/jaio/trunk/jaio/native/src/
   projects/jaio/trunk/jaio/native/src/AIOController.cpp
   projects/jaio/trunk/jaio/native/src/AIOController.h
   projects/jaio/trunk/jaio/native/src/AIOException.h
   projects/jaio/trunk/jaio/native/src/BufferAdapter.h
   projects/jaio/trunk/jaio/native/src/DataManager.cpp
   projects/jaio/trunk/jaio/native/src/DataManager.h
   projects/jaio/trunk/jaio/native/src/FileOutput.cpp
   projects/jaio/trunk/jaio/native/src/FileOutput.h
   projects/jaio/trunk/jaio/native/src/JAIODatatypes.h
   projects/jaio/trunk/jaio/native/src/JNIBufferAdapter.cpp
   projects/jaio/trunk/jaio/native/src/JNIBufferAdapter.h
   projects/jaio/trunk/jaio/native/src/JavaUtilities.cpp
   projects/jaio/trunk/jaio/native/src/JavaUtilities.h
   projects/jaio/trunk/jaio/native/src/LibAIOController.cpp
   projects/jaio/trunk/jaio/native/src/LockClass.h
   projects/jaio/trunk/jaio/native/src/PageManager.cpp
   projects/jaio/trunk/jaio/native/src/PageManager.h
   projects/jaio/trunk/jaio/native/src/PageObserver.h
Log:
Adding License Headers


Property changes on: projects/jaio/trunk/jaio/native/src
___________________________________________________________________
Name: svn:ignore
   + .deps


Modified: projects/jaio/trunk/jaio/native/src/AIOController.cpp
===================================================================
--- projects/jaio/trunk/jaio/native/src/AIOController.cpp	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/AIOController.cpp	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,3 +1,23 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
+
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
+
 #include <string>
 #include "AIOController.h"
 #include "PageManager.h"

Modified: projects/jaio/trunk/jaio/native/src/AIOController.h
===================================================================
--- projects/jaio/trunk/jaio/native/src/AIOController.h	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/AIOController.h	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,3 +1,23 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
+
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
+
 #ifndef AIOCONTROLLER_H_
 #define AIOCONTROLLER_H_
 #include <jni.h>

Modified: projects/jaio/trunk/jaio/native/src/AIOException.h
===================================================================
--- projects/jaio/trunk/jaio/native/src/AIOException.h	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/AIOException.h	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,3 +1,24 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
+
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
+
+
 #ifndef AIOEXCEPTION_H_
 #define AIOEXCEPTION_H_
 

Modified: projects/jaio/trunk/jaio/native/src/BufferAdapter.h
===================================================================
--- projects/jaio/trunk/jaio/native/src/BufferAdapter.h	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/BufferAdapter.h	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
+
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
 #ifndef BUFFERADAPTER_H_
 #define BUFFERADAPTER_H_
 

Modified: projects/jaio/trunk/jaio/native/src/DataManager.cpp
===================================================================
--- projects/jaio/trunk/jaio/native/src/DataManager.cpp	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/DataManager.cpp	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
+
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
 #include "DataManager.h"
 
 DataManager::DataManager()

Modified: projects/jaio/trunk/jaio/native/src/DataManager.h
===================================================================
--- projects/jaio/trunk/jaio/native/src/DataManager.h	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/DataManager.h	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
+
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
 #ifndef DATAMANAGER_H_
 #define DATAMANAGER_H_
 

Modified: projects/jaio/trunk/jaio/native/src/FileOutput.cpp
===================================================================
--- projects/jaio/trunk/jaio/native/src/FileOutput.cpp	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/FileOutput.cpp	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,4 +1,22 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
 
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
 #ifndef _GNU_SOURCE
 #define _GNU_SOURCE
 #endif

Modified: projects/jaio/trunk/jaio/native/src/FileOutput.h
===================================================================
--- projects/jaio/trunk/jaio/native/src/FileOutput.h	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/FileOutput.h	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
+
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
 #ifndef FILEOUTPUT_H_
 #define FILEOUTPUT_H_
 

Modified: projects/jaio/trunk/jaio/native/src/JAIODatatypes.h
===================================================================
--- projects/jaio/trunk/jaio/native/src/JAIODatatypes.h	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/JAIODatatypes.h	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
+
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
 #ifndef JAIODATATYPES_H_
 #define JAIODATATYPES_H_
 

Modified: projects/jaio/trunk/jaio/native/src/JNIBufferAdapter.cpp
===================================================================
--- projects/jaio/trunk/jaio/native/src/JNIBufferAdapter.cpp	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/JNIBufferAdapter.cpp	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
+
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
 #include <jni.h>
 #include "JNIBufferAdapter.h"
 #include <iostream>

Modified: projects/jaio/trunk/jaio/native/src/JNIBufferAdapter.h
===================================================================
--- projects/jaio/trunk/jaio/native/src/JNIBufferAdapter.h	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/JNIBufferAdapter.h	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
+
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
 #ifndef JNIBUFFERADAPTER_H_
 #define JNIBUFFERADAPTER_H_
 

Modified: projects/jaio/trunk/jaio/native/src/JavaUtilities.cpp
===================================================================
--- projects/jaio/trunk/jaio/native/src/JavaUtilities.cpp	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/JavaUtilities.cpp	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
+
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
 #include <stdio.h>
 #include <iostream>
 #include <string>

Modified: projects/jaio/trunk/jaio/native/src/JavaUtilities.h
===================================================================
--- projects/jaio/trunk/jaio/native/src/JavaUtilities.h	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/JavaUtilities.h	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
+
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
 #ifndef JAVAUTILITIES_H_
 #define JAVAUTILITIES_H_
 #include <string>

Modified: projects/jaio/trunk/jaio/native/src/LibAIOController.cpp
===================================================================
--- projects/jaio/trunk/jaio/native/src/LibAIOController.cpp	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/LibAIOController.cpp	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,4 +1,22 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
 
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
 #include <jni.h>
 #include <iostream>
 #include <stdio.h>
@@ -96,9 +114,6 @@
 	try 
 	{
 		AIOController * controller = (AIOController *) controllerAddress;
-		std::cout << "obj = " << (long) obj << "\n";
-		obj = env->NewGlobalRef(obj);
-		std::cout << "New Reference = " << (long) obj << "\n";
 		JNIBufferAdapter * adapter = new JNIBufferAdapter(controller, env->NewGlobalRef(obj));
 		controller->manager->addData(env, adapter);
 	}

Modified: projects/jaio/trunk/jaio/native/src/LockClass.h
===================================================================
--- projects/jaio/trunk/jaio/native/src/LockClass.h	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/LockClass.h	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
+
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
 #ifndef LOCKCLASS_H_
 #define LOCKCLASS_H_
 

Modified: projects/jaio/trunk/jaio/native/src/PageManager.cpp
===================================================================
--- projects/jaio/trunk/jaio/native/src/PageManager.cpp	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/PageManager.cpp	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
+
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
 #include <sstream>
 
 #include "BufferAdapter.h"

Modified: projects/jaio/trunk/jaio/native/src/PageManager.h
===================================================================
--- projects/jaio/trunk/jaio/native/src/PageManager.h	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/PageManager.h	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
+
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
 #ifndef PAGEMANAGER_H_
 #define PAGEMANAGER_H_
 

Modified: projects/jaio/trunk/jaio/native/src/PageObserver.h
===================================================================
--- projects/jaio/trunk/jaio/native/src/PageObserver.h	2008-02-20 15:05:15 UTC (rev 3741)
+++ projects/jaio/trunk/jaio/native/src/PageObserver.h	2008-02-20 15:21:03 UTC (rev 3742)
@@ -1,3 +1,22 @@
+/*
+    Copyright (C) 2008 Red Hat Software - JBoss Middleware Division
+
+
+    This library 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 Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301
+    USA
+
+    The GNU Lesser General Public License is available in the file COPYING.
+    
+    Software written by Clebert Suconic (csuconic at redhat dot com)
+*/
+
 #ifndef PAGEOBSERVER_H_
 #define PAGEOBSERVER_H_
 




More information about the jboss-cvs-commits mailing list