Subversion Repositories HelenOS

Rev

Rev 2894 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2832 svoboda 1
/** @addtogroup sctrace
2
 * @{
3
 */
4
/** @file
5
 */
6
 
7
#include "errors.h"
8
 
9
const err_desc_t err_desc[] = {
10
/*   0 */   { "EOK",        "No error" },
11
/*  -1 */   { "ENOENT",     "No such entry" },
12
/*  -2 */   { "ENOMEM",     "Not enough memory" },
13
/*  -3 */   { "ELIMIT",     "Limit exceeded" },
14
/*  -4 */   { "EREFUSED",       "Connection refused" },
15
 
16
/*  -5 */   { "EFORWARD",       "Forward error" },
17
/*  -6 */   { "EPERM",      "Permission denied" },
18
/*  -7 */   { "EHANGUP",        "Answerbox closed connection" },
19
/*  -8 */   { "EEXISTS",        "Entry already exists" },
20
/*  -9 */   { "EBADMEM",        "Bad memory pointer" },
21
 
22
/* -10 */   { "ENOTSUP",        "Not supported" },
23
/* -11 */   { "EADDRNOTAVAIL",  "Address not available." },
24
/* -12 */   { "ETIMEOUT",       "Timeout expired" },
25
/* -13 */   { "EINVAL",     "Invalid value" },
26
/* -14 */   { "EBUSY",      "Resource is busy" },
27
 
28
/* -15 */   { "EOVERFLOW",      "The result does not fit its size." }
29
};
30
 
31
/** @}
32
 */