if ((blocking) == CL_TRUE) { \
cl_event ev = (event);\
soclWaitForEvents(1, &ev);\
}
leads to the following code when calling MAY_BLOCK_CUSTOM(foo, ev):
if ((foo) == CL_TRUE) {
cl_event ev = (ev);
soclWaitForEvents(1, &ev);
}
with ev being used in its own initialization. This actually happened in soclEnqueueMapBuffer().
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||