Skip to content

Commit

Permalink
Rename internal function.
Browse files Browse the repository at this point in the history
  • Loading branch information
rsky committed Sep 3, 2012
1 parent d9f0dab commit f46549e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions kernel.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ PHPCL_FUNCTION(cl_get_kernel_info);
PHPCL_FUNCTION(cl_create_kernel);

PHPCL_LOCAL cl_int
php_cl_set_kernel_arg(cl_kernel kernel, cl_uint arg_index,
zval *arg_value, phpcl_c_type_t type TSRMLS_DC);
phpcl_set_kernel_arg(cl_kernel kernel, cl_uint arg_index,
zval *arg_value, phpcl_c_type_t type TSRMLS_DC);

END_EXTERN_C()
#endif
Expand Down
18 changes: 9 additions & 9 deletions kernel_arg.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,19 @@
BEGIN_EXTERN_C()

PHPCL_LOCAL cl_int
php_cl_set_kernel_arg(cl_kernel kernel, cl_uint arg_index,
zval *arg_value, phpcl_c_type_t type TSRMLS_DC)
phpcl_set_kernel_arg(cl_kernel kernel, cl_uint arg_index,
zval *arg_value, phpcl_c_type_t type TSRMLS_DC)
{
return CL_SUCCESS;
}

END_EXTERN_C()

/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/

0 comments on commit f46549e

Please sign in to comment.