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

« back to all changes in this revision

Viewing changes to TAO/orbsvcs/orbsvcs/LoadBalancing/LB_conf.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
 
//=============================================================================
4
 
/**
5
 
 * @file LB_conf.h
6
 
 *
7
 
 * LB_conf.h,v 1.4 2003/07/21 23:51:32 dhinton Exp
8
 
 *
9
 
 * @author Ossama Othman <ossama@uci.edu>
10
 
 */
11
 
//=============================================================================
12
 
 
13
 
 
14
 
#ifndef TAO_LB_CONF_H
15
 
#define TAO_LB_CONF_H
16
 
 
17
 
#include /**/ "ace/pre.h"
18
 
 
19
 
#include "ace/config-all.h"
20
 
 
21
 
#if !defined (ACE_LACKS_PRAGMA_ONCE)
22
 
#pragma once
23
 
#endif /* ACE_LACKS_PRAGMA_ONCE */
24
 
 
25
 
 
26
 
#ifndef TAO_LB_PULL_HANDLER_INTERVAL
27
 
/// The interval in seconds the load balancer queries registered load
28
 
/// monitors for loads.
29
 
const long TAO_LB_PULL_HANDLER_INTERVAL = 5;
30
 
#endif  /* TAO_LB_PULL_HANDLER_INTERVAL */
31
 
 
32
 
#ifndef TAO_LB_PULL_HANDLER_RESTART
33
 
/// The time in seconds the load balancer's "pull handler" is
34
 
/// restarted after being fired.
35
 
const long TAO_LB_PULL_HANDLER_RESTART = 5;
36
 
#endif  /* TAO_LB_PULL_HANDLER_RESTART */
37
 
 
38
 
 
39
 
#include /**/ "ace/post.h"
40
 
 
41
 
#endif  /* TAO_LB_CONF_H */