~chaffra/+junk/trilinos

« back to all changes in this revision

Viewing changes to packages/zoltan/siMPI/pyMPI/siMPI/MPI_Bcast.1.c

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Prud'homme, Christophe Prud'homme, Johannes Ring
  • Date: 2009-12-13 12:53:22 UTC
  • mfrom: (5.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20091213125322-in0nrdjc55deqsw9
Tags: 10.0.3.dfsg-1
[Christophe Prud'homme]
* New upstream release

[Johannes Ring]
* debian/patches/libname.patch: Add prefix 'libtrilinos_' to all
  libraries. 
* debian/patches/soname.patch: Add soversion to libraries.
* debian/watch: Update download URL.
* debian/control:
  - Remove python-numeric from Build-Depends (virtual package).
  - Remove automake and autotools from Build-Depends and add cmake to
    reflect switch to CMake.
  - Add python-support to Build-Depends.
* debian/rules: 
  - Cleanup and updates for switch to CMake.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*****************************************************************************
 
2
 * CVS File Information :
 
3
 *    $RCSfile$
 
4
 *    Author: patmiller $
 
5
 *    Date: 2006/04/25 19:03:07 $
 
6
 *    Revision: 1.1 $
 
7
 ****************************************************************************/
 
8
/* FILE  ******************      MPI_Bcast.c        ************************/
 
9
/****************************************************************************/
 
10
/* Author : Lisa Alano July 1 2002                                          */
 
11
/* Copyright (c) 2002 University of California Regents                      */
 
12
/****************************************************************************/
 
13
 
 
14
#include <stdio.h>
 
15
#include <stdlib.h>
 
16
#include <string.h>
 
17
#include "mpi.h"
 
18
 
 
19
/*==========================================================================*/
 
20
int MPI_Bcast ( void* buffer, int count, MPI_Datatype datatype, int root, 
 
21
  MPI_Comm comm )
 
22
{
 
23
  _MPI_COVERAGE();
 
24
  return PMPI_Bcast(buffer, count, datatype, root, comm);
 
25
}
 
26