summaryrefslogtreecommitdiff
path: root/modules/CIAO/ciao/CIAO_FailureReasons.idl
blob: 9a1edc5834fae4c9fc5772273a1d289e0a644b89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * @file CIAO_FailureReasons.idl
 * @author William R. Otte <wotte@dre.vanderbilt.edu>
 * $Id$
 * Failure code definitions for CIAO.  The VID is based on that of TAO, but
 * our failure reasons start at that base since this is a different namespace. 
 */

#ifndef CIAO_FAILUREREASONS_IDL
#define CIAO_FAILUREREASONS_IDL

#include <ccm/CCM_Exceptions.idl>

module CIAO
{
  const Components::FailureReason VID = 0x54410000;
  const Components::FailureReason MAX_FAILURE = VID | 0xfff;
  
  // Container failures
  
  const Components::FailureReason SERVER_SPAWN_FAILURE           = VID | 0x001;
  const Components::FailureReason CALLBACK_TIMEOUT_EXCEEDED      = VID | 0x002;
  
};

#endif