~ubuntu-branches/ubuntu/jaunty/pvm/jaunty

« back to all changes in this revision

Viewing changes to src/pvmshmem.c

  • Committer: Bazaar Package Importer
  • Author(s): Steinar H. Gunderson
  • Date: 2005-10-06 15:25:03 UTC
  • mfrom: (1.1.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20051006152503-nty60w30a9dja62m
Tags: 3.4.5-5
Use --remove-all on pvm-rsh alternative in prerm instead of --remove.
(Closes: #328366)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
static char rcsid[] =
3
 
        "$Id: pvmshmem.c,v 1.10 1999/07/08 19:00:14 kohl Exp $";
 
3
        "$Id: pvmshmem.c,v 1.11 2004/01/14 18:51:03 pvmsrc Exp $";
4
4
 
5
5
/*
6
6
 *         PVM version 3.4:  Parallel Virtual Machine System
36
36
 *  Shared-memory stuff.
37
37
 *
38
38
 * $Log: pvmshmem.c,v $
 
39
 * Revision 1.11  2004/01/14 18:51:03  pvmsrc
 
40
 * Added new AIX5* arches.
 
41
 * (Spanker=kohl)
 
42
 *
39
43
 * Revision 1.10  1999/07/08 19:00:14  kohl
40
44
 * Fixed "Log" keyword placement.
41
45
 *      - indent with " * " for new CVS.
240
244
#if defined(IMA_SUNMP) && defined(PVMUSEMUTEX)
241
245
        cond_init(&((struct msgboxhdr *)buf)->mb_cond, USYNC_PROCESS, 0);
242
246
#endif
243
 
#if defined(IMA_RS6KMP) || defined(IMA_AIX4MP)
 
247
#if defined(IMA_RS6KMP) || defined(IMA_AIX4MP) || defined(IMA_AIX5MP)
244
248
        pthread_cond_init(&((struct msgboxhdr *)buf)->mb_cond, NULL);
245
249
#endif
246
250
        PAGEINITLOCK(&((struct msgboxhdr *)buf)->mb_lock);