client: write / parse OpenCL info in COPROC XML data

svn path=/trunk/boinc/; revision=24028
This commit is contained in:
Charlie Fenton 2011-08-23 12:56:19 +00:00
parent 0c39d8e9d9
commit 05ddd16f5e
2 changed files with 1 additions and 7 deletions

View File

@ -308,12 +308,6 @@ void COPROC_NVIDIA::description(char* buf) {
#ifndef _USING_FCGI_
void COPROC_NVIDIA::write_xml(MIOFILE& f, bool include_request) {
unsigned long long test;
test = strtoull("0x123456789abc", NULL, 0);
f.printf(
"<coproc_cuda>\n"
" <count>%d</count>\n"

View File

@ -77,7 +77,7 @@ inline bool match_tag(const std::string &s, const char* tag) {
return match_tag(s.c_str(), tag);
}
#ifndef strtoull
#ifndef __APPLE__
inline unsigned long long strtoull(const char *s, char **, int) {
char buf[64];
char *p;