diff options
Diffstat (limited to 'src/api/api_event.cpp')
-rw-r--r-- | src/api/api_event.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/api/api_event.cpp b/src/api/api_event.cpp new file mode 100644 index 0000000..9c08011 --- /dev/null +++ b/src/api/api_event.cpp @@ -0,0 +1,31 @@ +#include <OpenCL/cl.h> + +// Event Object APIs +cl_int +clWaitForEvents(cl_uint num_events, + const cl_event * event_list) +{ + return 0; +} + +cl_int +clGetEventInfo(cl_event event, + cl_event_info param_name, + size_t param_value_size, + void * param_value, + size_t * param_value_size_ret) +{ + return 0; +} + +cl_int +clRetainEvent(cl_event event) +{ + return 0; +} + +cl_int +clReleaseEvent(cl_event event) +{ + return 0; +} |