~ubuntu-branches/ubuntu/karmic/cvm/karmic

« back to all changes in this revision

Viewing changes to errors.h

  • Committer: Bazaar Package Importer
  • Author(s): Gerrit Pape
  • Date: 2005-01-15 11:32:52 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050115113252-0jj7skrzjb0s6837
Tags: 0.32-1
* new upstream version.
* debian/copyright: adapt, 2005.
* debian/diff/ld.diff: adapt.
* debian/rules: strip diet binaries if DEB_BUILD_OPTIONS=diet is set.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef CVM__ERRORS__H__
2
 
#define CVM__ERRORS__H__
3
 
 
4
 
#define CVME_GENERAL 1
5
 
#define CVME_BAD_CLIDATA 2
6
 
#define CVME_BAD_MODDATA 3
7
 
#define CVME_IO 4
8
 
#define CVME_NOFACT 5
9
 
#define CVME_CONFIG 6
10
 
#define CVME_PERMFAIL 100
11
 
 
12
 
/* This error code is only used by modules, to signal that the error
13
 
   is fatal and should cause module shutdown. */
14
 
#define CVME_MASK  0x0ff
15
 
#define CVME_FATAL 0x100
16
 
 
17
 
#endif