OpenACC deviceptr clause: Remove bogus assertion.
[official-gcc.git] / libgomp / libgomp-plugin.c
blob0f72bb9ba35f091434b05e2c071c6dfad960f042
1 /* Copyright (C) 2014 Free Software Foundation, Inc.
2 Contributed by Mentor Embedded.
4 This file is part of the GNU OpenMP Library (libgomp).
6 Libgomp is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3, or (at your option)
9 any later version.
11 Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 more details.
16 Under Section 7 of GPL version 3, you are granted additional
17 permissions described in the GCC Runtime Library Exception, version
18 3.1, as published by the Free Software Foundation.
20 You should have received a copy of the GNU General Public License and
21 a copy of the GCC Runtime Library Exception along with this program;
22 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 <http://www.gnu.org/licenses/>. */
25 /* Exported (non-hidden) functions exposing libgomp interface for plugins. */
27 #include <stdlib.h>
29 #include "libgomp.h"
30 #include "libgomp-plugin.h"
31 #include "target.h"
33 void *
34 GOMP_PLUGIN_malloc (size_t size)
36 return gomp_malloc (size);
39 void *
40 GOMP_PLUGIN_malloc_cleared (size_t size)
42 return gomp_malloc_cleared (size);
45 void *
46 GOMP_PLUGIN_realloc (void *ptr, size_t size)
48 return gomp_realloc (ptr, size);
51 void
52 GOMP_PLUGIN_error (const char *msg, ...)
54 va_list ap;
56 va_start (ap, msg);
57 gomp_verror (msg, ap);
58 va_end (ap);
61 void
62 GOMP_PLUGIN_notify (const char *msg, ...)
64 va_list ap;
66 va_start (ap, msg);
67 gomp_vnotify (msg, ap);
68 va_end (ap);
71 void
72 GOMP_PLUGIN_fatal (const char *msg, ...)
74 va_list ap;
76 va_start (ap, msg);
77 gomp_vfatal (msg, ap);
78 va_end (ap);
80 /* Unreachable. */
81 abort ();
84 void
85 GOMP_PLUGIN_mutex_init (gomp_mutex_t *mutex)
87 gomp_mutex_init (mutex);
90 void
91 GOMP_PLUGIN_mutex_destroy (gomp_mutex_t *mutex)
93 gomp_mutex_destroy (mutex);
96 void
97 GOMP_PLUGIN_mutex_lock (gomp_mutex_t *mutex)
99 gomp_mutex_lock (mutex);
102 void
103 GOMP_PLUGIN_mutex_unlock (gomp_mutex_t *mutex)
105 gomp_mutex_unlock (mutex);