-
Notifications
You must be signed in to change notification settings - Fork 550
Expand file tree
/
Copy pathevent.cpp
More file actions
31 lines (25 loc) · 860 Bytes
/
event.cpp
File metadata and controls
31 lines (25 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*******************************************************
* Copyright (c) 2015, ArrayFire
* All rights reserved.
*
* This file is distributed under 3-clause BSD license.
* The complete license agreement can be obtained at:
* http://arrayfire.com/licenses/BSD-3-Clause
********************************************************/
#include <af/event.h>
#include "symbol_manager.hpp"
af_err af_create_event(af_event* eventHandle) {
CALL(af_create_event, eventHandle);
}
af_err af_delete_event(af_event eventHandle) {
CALL(af_delete_event, eventHandle);
}
af_err af_mark_event(const af_event eventHandle) {
CALL(af_mark_event, eventHandle);
}
af_err af_enqueue_wait_event(const af_event eventHandle) {
CALL(af_enqueue_wait_event, eventHandle);
}
af_err af_block_event(const af_event eventHandle) {
CALL(af_block_event, eventHandle);
}