comparison src/share/vm/runtime/gpu.hpp @ 10566:a6632ef9c84d

GPU generate_kernel return for Cuda function
author Morris Meyer <morris.meyer@oracle.com>
date Thu, 27 Jun 2013 19:57:43 -0400
parents 147162b27799
children 9c7d9e2c8326
comparison
equal deleted inserted replaced
10565:52d5ade44b59 10566:a6632ef9c84d
39 39
40 static void probe_linkage(); 40 static void probe_linkage();
41 41
42 static void initialize_gpu(); 42 static void initialize_gpu();
43 43
44 static void generate_kernel(unsigned char *code, int code_len, const char *name); 44 static void * generate_kernel(unsigned char *code, int code_len, const char *name);
45 45
46 static void set_available(bool value) { 46 static void set_available(bool value) {
47 _available = value; 47 _available = value;
48 } 48 }
49 49