[Spread-cvs] commit: r484 - libspreadutil/trunk/include

jonathan at spread.org jonathan at spread.org
Mon Mar 5 14:45:18 EST 2012


Author: jonathan
Date: 2012-03-05 14:45:18 -0500 (Mon, 05 Mar 2012)
New Revision: 484

Added:
   libspreadutil/trunk/include/spu_scatter.h
Removed:
   libspreadutil/trunk/include/scatter.h
Log:
Move scatter.h to spu_scatter.h

Deleted: libspreadutil/trunk/include/scatter.h
===================================================================
--- libspreadutil/trunk/include/scatter.h	2012-03-05 19:36:45 UTC (rev 483)
+++ libspreadutil/trunk/include/scatter.h	2012-03-05 19:45:18 UTC (rev 484)
@@ -1,59 +0,0 @@
-/*
- * The Spread Toolkit.
- *     
- * The contents of this file are subject to the Spread Open-Source
- * License, Version 1.0 (the ``License''); you may not use
- * this file except in compliance with the License.  You may obtain a
- * copy of the License at:
- *
- * http://www.spread.org/license/
- *
- * or in the file ``license.txt'' found in this distribution.
- *
- * Software distributed under the License is distributed on an AS IS basis, 
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
- * for the specific language governing rights and limitations under the 
- * License.
- *
- * The Creators of Spread are:
- *  Yair Amir, Michal Miskin-Amir, Jonathan Stanton, John Schultz.
- *
- *  Copyright (C) 1993-2009 Spread Concepts LLC <info at spreadconcepts.com>
- *
- *  All Rights Reserved.
- *
- * Major Contributor(s):
- * ---------------
- *    Ryan Caudy           rcaudy at gmail.com - contributions to process groups.
- *    Claudiu Danilov      claudiu at acm.org - scalable wide area support.
- *    Cristina Nita-Rotaru crisn at cs.purdue.edu - group communication security.
- *    Theo Schlossnagle    jesus at omniti.com - Perl, autoconf, old skiplist.
- *    Dan Schoenblum       dansch at cnds.jhu.edu - Java interface.
- *
- */
-
-
-#ifndef INC_SCATTER
-#define INC_SCATTER
-
-#include "system.h"
-#define	MAX_SCATTER_ELEMENTS	100
-
-/* scat_element is EXACTLY as defined in iovec */
-
-typedef struct dummy_scat_element{
-	char	*buf;
-	size_t	len;
-} scat_element;
-
-typedef struct dummy_scatter {
-	size_t		num_elements;
-	scat_element	elements[ARCH_SCATTER_SIZE];
-} sys_scatter;
-
-typedef struct dummy_big_scatter {
-	size_t		num_elements;
-	scat_element	elements[MAX_SCATTER_ELEMENTS];
-} scatter;
-
-#endif  /* INC_SCATTER */

Copied: libspreadutil/trunk/include/spu_scatter.h (from rev 480, libspreadutil/trunk/include/scatter.h)
===================================================================
--- libspreadutil/trunk/include/spu_scatter.h	                        (rev 0)
+++ libspreadutil/trunk/include/spu_scatter.h	2012-03-05 19:45:18 UTC (rev 484)
@@ -0,0 +1,59 @@
+/*
+ * The Spread Toolkit.
+ *     
+ * The contents of this file are subject to the Spread Open-Source
+ * License, Version 1.0 (the ``License''); you may not use
+ * this file except in compliance with the License.  You may obtain a
+ * copy of the License at:
+ *
+ * http://www.spread.org/license/
+ *
+ * or in the file ``license.txt'' found in this distribution.
+ *
+ * Software distributed under the License is distributed on an AS IS basis, 
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
+ * for the specific language governing rights and limitations under the 
+ * License.
+ *
+ * The Creators of Spread are:
+ *  Yair Amir, Michal Miskin-Amir, Jonathan Stanton, John Schultz.
+ *
+ *  Copyright (C) 1993-2009 Spread Concepts LLC <info at spreadconcepts.com>
+ *
+ *  All Rights Reserved.
+ *
+ * Major Contributor(s):
+ * ---------------
+ *    Ryan Caudy           rcaudy at gmail.com - contributions to process groups.
+ *    Claudiu Danilov      claudiu at acm.org - scalable wide area support.
+ *    Cristina Nita-Rotaru crisn at cs.purdue.edu - group communication security.
+ *    Theo Schlossnagle    jesus at omniti.com - Perl, autoconf, old skiplist.
+ *    Dan Schoenblum       dansch at cnds.jhu.edu - Java interface.
+ *
+ */
+
+
+#ifndef INC_SCATTER
+#define INC_SCATTER
+
+#include "system.h"
+#define	MAX_SCATTER_ELEMENTS	100
+
+/* scat_element is EXACTLY as defined in iovec */
+
+typedef struct dummy_scat_element{
+	char	*buf;
+	size_t	len;
+} scat_element;
+
+typedef struct dummy_scatter {
+	size_t		num_elements;
+	scat_element	elements[ARCH_SCATTER_SIZE];
+} sys_scatter;
+
+typedef struct dummy_big_scatter {
+	size_t		num_elements;
+	scat_element	elements[MAX_SCATTER_ELEMENTS];
+} scatter;
+
+#endif  /* INC_SCATTER */




More information about the Spread-cvs mailing list