ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/libstatgrab/src/libstatgrab/error.c
(Generate patch)

Comparing projects/libstatgrab/src/libstatgrab/error.c (file contents):
Revision 1.5 by tdb, Wed Apr 7 14:53:40 2004 UTC vs.
Revision 1.6 by tdb, Wed Apr 7 19:26:16 2004 UTC

# Line 44 | Line 44 | const char *sg_str_error(sg_error code) {
44          switch (code) {
45          case SG_ERROR_NONE:
46                  return "no error";
47 +        case SG_ERROR_UNSUPPORTED:
48 +                return "unsupported function";
49          case SG_ERROR_MALLOC:
50                  return "malloc failed";
51          case SG_ERROR_KSTAT_OPEN:
# Line 52 | Line 54 | const char *sg_str_error(sg_error code) {
54                  return "failed to open file";
55          case SG_ERROR_SYSCTLBYNAME:
56                  return "sysctlbyname failed";
57 +        case SG_ERROR_SYSCTL:
58 +                return "sysctl failed";
59          case SG_ERROR_PARSE:
60                  return "failed to parse input";
61 +        case SG_ERROR_GETMNTINFO:
62 +                return "getmntinfo failed";
63 +        case SG_ERROR_SETMNTENT:
64 +                return "setmntent failed";
65 +        case SG_ERROR_DEVSTAT_GETDEVS:
66 +                return "devstat_getdevs failed";
67 +        case SG_ERROR_DEVSTAT_SELECTDEVS:
68 +                return "devstat_selectdevs failed";
69 +        case SG_ERROR_ASPRINTF:
70 +                return "asprintf failed";
71          default:
72                  return "unknown error";
73          }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines