diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2017-02-02 15:13:57 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2017-02-02 15:13:57 +0100 |
commit | 345a8c1712df339941e1b61425f0aa02e55ed364 (patch) | |
tree | faf0068f952501848e4ff07c39f38134178020b5 /libgomp/libgomp-plugin.h | |
parent | da75ca93f8f17847f75ff50d00796e98ccf8509d (diff) | |
download | gcc-345a8c1712df339941e1b61425f0aa02e55ed364.zip gcc-345a8c1712df339941e1b61425f0aa02e55ed364.tar.gz gcc-345a8c1712df339941e1b61425f0aa02e55ed364.tar.bz2 |
libgomp: Normalize the names of a few functions of the libgomp plugin API
libgomp/
* libgomp-plugin.h (GOMP_OFFLOAD_openacc_parallel): Rename to
GOMP_OFFLOAD_openacc_exec. Adjust all users.
(GOMP_OFFLOAD_openacc_get_current_cuda_device): Rename to
GOMP_OFFLOAD_openacc_cuda_get_current_device. Adjust all users.
(GOMP_OFFLOAD_openacc_get_current_cuda_context): Rename to
GOMP_OFFLOAD_openacc_cuda_get_current_context. Adjust all users.
(GOMP_OFFLOAD_openacc_get_cuda_stream): Rename to
GOMP_OFFLOAD_openacc_cuda_get_stream. Adjust all users.
(GOMP_OFFLOAD_openacc_set_cuda_stream): Rename to
GOMP_OFFLOAD_openacc_cuda_set_stream. Adjust all users.
From-SVN: r245125
Diffstat (limited to 'libgomp/libgomp-plugin.h')
-rw-r--r-- | libgomp/libgomp-plugin.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libgomp/libgomp-plugin.h b/libgomp/libgomp-plugin.h index fba45ee..ff81350 100644 --- a/libgomp/libgomp-plugin.h +++ b/libgomp/libgomp-plugin.h @@ -93,8 +93,8 @@ extern bool GOMP_OFFLOAD_dev2dev (int, void *, const void *, size_t); extern bool GOMP_OFFLOAD_can_run (void *); extern void GOMP_OFFLOAD_run (int, void *, void *, void **); extern void GOMP_OFFLOAD_async_run (int, void *, void *, void **, void *); -extern void GOMP_OFFLOAD_openacc_parallel (void (*) (void *), size_t, void **, - void **, int, unsigned *, void *); +extern void GOMP_OFFLOAD_openacc_exec (void (*) (void *), size_t, void **, + void **, int, unsigned *, void *); extern void GOMP_OFFLOAD_openacc_register_async_cleanup (void *, int); extern int GOMP_OFFLOAD_openacc_async_test (int); extern int GOMP_OFFLOAD_openacc_async_test_all (void); @@ -105,10 +105,10 @@ extern void GOMP_OFFLOAD_openacc_async_wait_all_async (int); extern void GOMP_OFFLOAD_openacc_async_set_async (int); extern void *GOMP_OFFLOAD_openacc_create_thread_data (int); extern void GOMP_OFFLOAD_openacc_destroy_thread_data (void *); -extern void *GOMP_OFFLOAD_openacc_get_current_cuda_device (void); -extern void *GOMP_OFFLOAD_openacc_get_current_cuda_context (void); -extern void *GOMP_OFFLOAD_openacc_get_cuda_stream (int); -extern int GOMP_OFFLOAD_openacc_set_cuda_stream (int, void *); +extern void *GOMP_OFFLOAD_openacc_cuda_get_current_device (void); +extern void *GOMP_OFFLOAD_openacc_cuda_get_current_context (void); +extern void *GOMP_OFFLOAD_openacc_cuda_get_stream (int); +extern int GOMP_OFFLOAD_openacc_cuda_set_stream (int, void *); #ifdef __cplusplus } |