| 682 | } |
| 683 | |
| 684 | static void do_mkdir(const std::string &path) |
| 685 | { |
| 686 | int st = make_directory (path.c_str()); |
| 687 | |
| 688 | if (st != 0) |
| 689 | { |
| 690 | if ( errno != EEXIST ) |
| 691 | { |
| 692 | std::string tmp = "Cannot not create directory '" + std::string(path) + "': "; |
| 693 | throw tmp; |
| 694 | } |
| 695 | } |
| 696 | } |
| 697 | |
| 698 | cl_int FFTBinaryLookup::retrieveDeviceAndDriverInfo() |
| 699 | { |
no test coverage detected