~ubuntu-branches/ubuntu/breezy/ace/breezy

« back to all changes in this revision

Viewing changes to TAO/orbsvcs/orbsvcs/ESF/ESF_Defaults.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad, Benjamin Montgomery, Adam Conrad
  • Date: 2005-09-18 22:51:38 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 sarge) (0.1.2 woody)
  • Revision ID: james.westby@ubuntu.com-20050918225138-seav22q6fyylb536
Tags: 5.4.7-3ubuntu1
[ Benjamin Montgomery ]
* Added a patch for amd64 and powerpc that disables the compiler
  option -fvisibility-inlines-hidden

[ Adam Conrad ]
* Added DPATCH_OPTION_CPP=1 to debian/patches/00options to make
  Benjamin's above changes work correctly with dpatch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- C++ -*- */
2
 
/**
3
 
 *  @file   ESF_Defaults.h
4
 
 *
5
 
 *  ESF_Defaults.h,v 1.3 2000/10/31 03:11:12 coryan Exp
6
 
 *
7
 
 * In this file we set the compile time defaults for the framework.
8
 
 *
9
 
 *
10
 
 *  @author Carlos O'Ryan (coryan@cs.wustl.edu)
11
 
 *
12
 
 *  http://doc.ece.uci.edu/~coryan/EC/index.html
13
 
 */
14
 
 
15
 
#ifndef TAO_ESF_DEFAULTS_H
16
 
#define TAO_ESF_DEFAULTS_H
17
 
 
18
 
#ifndef TAO_ESF_ENABLE_DEBUG_MESSAGES
19
 
#define TAO_ESF_ENABLE_DEBUG_MESSAGES 0
20
 
#endif /* TAO_ESF_ENABLE_DEBUG_MESSAGES */
21
 
 
22
 
// Control the maximum degree of concurrency tolerated by the EC, some
23
 
// kind of limit is required to avoid starvation of delayed write
24
 
// operations.
25
 
#ifndef TAO_ESF_DEFAULT_BUSY_HWM
26
 
# define TAO_ESF_DEFAULT_BUSY_HWM 1024
27
 
#endif /* TAO_ESF_DEFAULT_BUSY_HWM */
28
 
 
29
 
#ifndef TAO_ESF_DEFAULT_MAX_WRITE_DELAY
30
 
# define TAO_ESF_DEFAULT_MAX_WRITE_DELAY 2048
31
 
#endif /* TAO_ESF_DEFAULT_MAX_WRITE_DELAY */
32
 
 
33
 
#ifndef TAO_ESF_DEFAULT_ORB_ID
34
 
# define TAO_ESF_DEFAULT_ORB_ID "" /* */
35
 
#endif /* TAO_ESF_DEFAULT_ORB_ID */
36
 
 
37
 
#endif /* TAO_ESF_DEFAULTS_H */