! \brief Sets the execution status of a user event object. * * Wraps clSetUserEventStatus(). */
| 2989 | * Wraps clSetUserEventStatus(). |
| 2990 | */ |
| 2991 | cl_int setStatus(cl_int status) |
| 2992 | { |
| 2993 | return detail::errHandler( |
| 2994 | ::clSetUserEventStatus(object_,status), |
| 2995 | __SET_USER_EVENT_STATUS_ERR); |
| 2996 | } |
| 2997 | }; |
| 2998 | #endif |
| 2999 |
nothing calls this directly
no test coverage detected