1 /* Single-image implementation of GNU Fortran Coarray Library
3 Free Software Foundation, Inc.
4 Contributed by Tobias Burnus <burnus@net-b.de>
6 This file is part of the GNU Fortran Coarray Runtime Library (libcaf).
8 Libcaf is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
13 Libcaf is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 Under Section 7 of GPL version 3, you are granted additional
19 permissions described in the GCC Runtime Library Exception, version
20 3.1, as published by the Free Software Foundation.
22 You should have received a copy of the GNU General Public License and
23 a copy of the GCC Runtime Library Exception along with this program;
24 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 <http://www.gnu.org/licenses/>. */
28 #include <stdio.h> /* For fputs and fprintf. */
29 #include <stdlib.h> /* For exit and malloc. */
31 /* Define GFC_CAF_CHECK to enable run-time checking. */
32 /* #define GFC_CAF_CHECK 1 */
34 /* Single-image implementation of the CAF library.
35 Note: For performance reasons -fcoarry=single should be used
36 rather than this library. */
38 /* Global variables. */
39 caf_static_t *caf_static_list = NULL;
43 _gfortran_caf_init (int *argc __attribute__ ((unused)),
44 char ***argv __attribute__ ((unused)),
45 int *this_image, int *num_images)
53 _gfortran_caf_finalize (void)
55 while (caf_static_list != NULL)
57 free(caf_static_list->token[0]);
58 caf_static_list = caf_static_list->prev;
64 _gfortran_caf_register (ptrdiff_t size, caf_register_t type,
69 local = malloc (size);
70 token = malloc (sizeof (void*) * 1);
73 if (type == CAF_REGTYPE_COARRAY_STATIC)
75 caf_static_t *tmp = malloc (sizeof (caf_static_t));
76 tmp->prev = caf_static_list;
78 caf_static_list = tmp;
85 _gfortran_caf_deregister (void **token __attribute__ ((unused)))
92 _gfortran_caf_sync_all (int *stat,
93 char *errmsg __attribute__ ((unused)),
94 int errmsg_len __attribute__ ((unused)))
102 _gfortran_caf_sync_images (int count __attribute__ ((unused)),
103 int images[] __attribute__ ((unused)),
105 char *errmsg __attribute__ ((unused)),
106 int errmsg_len __attribute__ ((unused)))
111 for (i = 0; i < count; i++)
114 fprintf (stderr, "COARRAY ERROR: Invalid image index %d to SYNC "
115 "IMAGES", images[i]);
126 _gfortran_caf_error_stop_str (const char *string, int32_t len)
128 fputs ("ERROR STOP ", stderr);
130 fputc (*(string++), stderr);
131 fputs ("\n", stderr);
138 _gfortran_caf_error_stop (int32_t error)
140 fprintf (stderr, "ERROR STOP %d\n", error);