]> oss.titaniummirror.com Git - tinyos-2.x.git/commitdiff
ENOMEM
authorscipio <scipio>
Tue, 20 May 2008 21:46:21 +0000 (21:46 +0000)
committerscipio <scipio>
Tue, 20 May 2008 21:46:21 +0000 (21:46 +0000)
tos/types/TinyError.h

index c2ed2bfab8c9b13f2ed60d9465def147a1f56e34..1f1465952d5a79d63f62956ed2d4426499d53a99 100644 (file)
 #endif
 
 enum {
-  SUCCESS        = 0,          
-  FAIL           = 1,           // Generic condition: backwards compatible
-  ESIZE          = 2,           // Parameter passed in was too big.
-  ECANCEL        = 3,           // Operation cancelled by a call.
-  EOFF           = 4,           // Subsystem is not active
-  EBUSY          = 5,           // The underlying system is busy; retry later
-  EINVAL         = 6,           // An invalid parameter was passed
-  ERETRY         = 7,           // A rare and transient failure: can retry
-  ERESERVE       = 8,           // Reservation required before usage
-  EALREADY       = 9,           // The device state you are requesting is already set
+  SUCCESS        =  0,          
+  FAIL           =  1,           // Generic condition: backwards compatible
+  ESIZE          =  2,           // Parameter passed in was too big.
+  ECANCEL        =  3,           // Operation cancelled by a call.
+  EOFF           =  4,           // Subsystem is not active
+  EBUSY          =  5,           // The underlying system is busy; retry later
+  EINVAL         =  6,           // An invalid parameter was passed
+  ERETRY         =  7,           // A rare and transient failure: can retry
+  ERESERVE       =  8,           // Reservation required before usage
+  EALREADY       =  9,           // The device state you are requesting is already set
+  ENOMEM         = 10,           // Memory required not available
+  ELAST          = 10            // Last enum value
 };
 
 typedef uint8_t error_t NESC_COMBINE("ecombine");