1
1

Update the copyright. Add the fix from Tim Mattox regarding the computation

of the upper bound.

This commit was SVN r24060.
Этот коммит содержится в:
George Bosilca 2010-11-17 02:10:15 +00:00
родитель 74927c7ab0
Коммит d997ef4f49
2 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -55,7 +55,7 @@ static size_t opal_datatype_memop_block_size = 128 * 1024;
#define MEMMOVE(d, s, l) \ #define MEMMOVE(d, s, l) \
do { \ do { \
if( (((d) < (s)) && (((d) + (l)) > (s))) || \ if( (((d) < (s)) && (((d) + (l)) > (s))) || \
(((s) < (d)) && (((s) + (l)) > (s))) ) { \ (((s) < (d)) && (((s) + (l)) > (d))) ) { \
memmove( (d), (s), (l) ); \ memmove( (d), (s), (l) ); \
} else { \ } else { \
MEMCPY( (d), (s), (l) ); \ MEMCPY( (d), (s), (l) ); \

Просмотреть файл

@ -1,8 +1,9 @@
/* -*- Mode: C; c-basic-offset:4 ; -*- */ /* -*- Mode: C; c-basic-offset:4 ; -*- */
/* /*
* Copyright (c) 2004-2009 The University of Tennessee and The University * Copyright (c) 2004-2010 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights * of Tennessee Research Foundation. All rights
* reserved. * reserved.
* Copyright (c) 2009 Oak Ridge National Labs. All rights reserved.
* $COPYRIGHT$ * $COPYRIGHT$
* *
* Additional copyrights may follow * Additional copyrights may follow