2008-03-03 19:11:41 +00:00
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
2007-02-12 12:50:17 +00:00
|
|
|
|
2010-03-10 19:14:19 +01:00
|
|
|
<!--Converted with LaTeX2HTML 2008 (1.71)
|
2007-02-12 12:50:17 +00:00
|
|
|
original version by: Nikos Drakos, CBLU, University of Leeds
|
|
|
|
* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan
|
|
|
|
* with significant contributions from:
|
|
|
|
Jens Lippmann, Marek Rouchal, Martin Wilck and others -->
|
|
|
|
<HTML>
|
|
|
|
<HEAD>
|
2014-05-21 11:15:21 -04:00
|
|
|
<TITLE>Error handling</TITLE>
|
|
|
|
<META NAME="description" CONTENT="Error handling">
|
2007-02-12 12:50:17 +00:00
|
|
|
<META NAME="keywords" CONTENT="clamdoc">
|
|
|
|
<META NAME="resource-type" CONTENT="document">
|
|
|
|
<META NAME="distribution" CONTENT="global">
|
|
|
|
|
2010-03-10 19:14:19 +01:00
|
|
|
<META NAME="Generator" CONTENT="LaTeX2HTML v2008">
|
2007-02-12 12:50:17 +00:00
|
|
|
<META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css">
|
|
|
|
|
|
|
|
<LINK REL="STYLESHEET" HREF="clamdoc.css">
|
|
|
|
|
2010-03-10 19:14:19 +01:00
|
|
|
<LINK REL="next" HREF="node54.html">
|
2008-07-16 16:40:13 +00:00
|
|
|
<LINK REL="previous" HREF="node52.html">
|
2014-05-21 11:15:21 -04:00
|
|
|
<LINK REL="up" HREF="node49.html">
|
2008-06-09 19:14:55 +00:00
|
|
|
<LINK REL="next" HREF="node54.html">
|
2007-02-12 12:50:17 +00:00
|
|
|
</HEAD>
|
|
|
|
|
|
|
|
<BODY >
|
2008-03-03 19:11:41 +00:00
|
|
|
|
|
|
|
<DIV CLASS="navigation"><!--Navigation Panel-->
|
2014-05-21 11:15:21 -04:00
|
|
|
<A NAME="tex2html923"
|
2008-06-09 19:14:55 +00:00
|
|
|
HREF="node54.html">
|
|
|
|
<IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A>
|
2014-05-21 11:15:21 -04:00
|
|
|
<A NAME="tex2html919"
|
|
|
|
HREF="node49.html">
|
2007-02-12 12:50:17 +00:00
|
|
|
<IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A>
|
2014-05-21 11:15:21 -04:00
|
|
|
<A NAME="tex2html913"
|
2007-02-12 12:50:17 +00:00
|
|
|
HREF="node52.html">
|
|
|
|
<IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A>
|
2014-05-21 11:15:21 -04:00
|
|
|
<A NAME="tex2html921"
|
2007-02-12 12:50:17 +00:00
|
|
|
HREF="node1.html">
|
|
|
|
<IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A>
|
|
|
|
<BR>
|
2014-05-21 11:15:21 -04:00
|
|
|
<B> Next:</B> <A NAME="tex2html924"
|
|
|
|
HREF="node54.html">Engine structure</A>
|
|
|
|
<B> Up:</B> <A NAME="tex2html920"
|
|
|
|
HREF="node49.html">API</A>
|
|
|
|
<B> Previous:</B> <A NAME="tex2html914"
|
|
|
|
HREF="node52.html">Database loading</A>
|
|
|
|
<B> <A NAME="tex2html922"
|
2007-02-12 12:50:17 +00:00
|
|
|
HREF="node1.html">Contents</A></B>
|
|
|
|
<BR>
|
2008-03-03 19:11:41 +00:00
|
|
|
<BR></DIV>
|
2007-02-12 12:50:17 +00:00
|
|
|
<!--End of Navigation Panel-->
|
|
|
|
|
2014-05-21 11:15:21 -04:00
|
|
|
<H3><A NAME="SECTION00073400000000000000">
|
|
|
|
Error handling</A>
|
2009-02-25 19:49:26 +00:00
|
|
|
</H3>
|
2014-05-21 11:15:21 -04:00
|
|
|
Use <code>cl_strerror()</code> to convert error codes into human readable
|
|
|
|
messages. The function returns a statically allocated string:
|
|
|
|
<PRE>
|
|
|
|
if(ret != CL_SUCCESS) {
|
|
|
|
printf("cl_load() error: %s\n", cl_strerror(ret));
|
|
|
|
cl_engine_free(engine);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
</PRE>
|
2008-06-09 19:14:55 +00:00
|
|
|
|
|
|
|
<P>
|
2007-02-12 12:50:17 +00:00
|
|
|
<BR><HR>
|
|
|
|
<ADDRESS>
|
2014-05-21 11:15:21 -04:00
|
|
|
Cisco 2014-05-21
|
2007-02-12 12:50:17 +00:00
|
|
|
</ADDRESS>
|
|
|
|
</BODY>
|
|
|
|
</HTML>
|