commit: r484 - libspreadutil/trunk/include
[email protected] Mon, 05 Mar 2012 14:45:18 -0500
| Newsgroups | gmane.network.spread.cvs |
|---|---|
| Message-ID | <[email protected]> |
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 <[email protected]> - * - * All Rights Reserved. - * - * Major Contributor(s): - * --------------- - * Ryan Caudy [email protected] - contributions to process groups. - * Claudiu Danilov [email protected] - scalable wide area support. - * Cristina Nita-Rotaru [email protected] - group communication security. - * Theo Schlossnagle [email protected] - Perl, autoconf, old skiplist. - * Dan Schoenblum [email protected] - 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 <[email protected]> + * + * All Rights Reserved. + * + * Major Contributor(s): + * --------------- + * Ryan Caudy [email protected] - contributions to process groups. + * Claudiu Danilov [email protected] - scalable wide area support. + * Cristina Nita-Rotaru [email protected] - group communication security. + * Theo Schlossnagle [email protected] - Perl, autoconf, old skiplist. + * Dan Schoenblum [email protected] - 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 */