summaryrefslogtreecommitdiff
path: root/TAO/tao/Default_Thread_Priority_Protocols_Hooks.h
blob: af7717675d514a22b57e792154765706128b32b7 (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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// -*- C++ -*-

// ===================================================================
/**
 *  @file   Default_Thread_Priority_Protocols_Hooks.h
 *
 *  $Id$
 *
 *  @author Jaiganesh Balasubramanian <jai@dre.vanderbilt.edu>
 *          Johnny Willemsen <jwillemsen@remedy.nl>
 */
// ===================================================================

#ifndef TAO_DEFAULT_THREAD_PRIORITY_PROTOCOLS_HOOKS_H
#define TAO_DEFAULT_THREAD_PRIORITY_PROTOCOLS_HOOKS_H

#include /**/ "ace/pre.h"
#include "ace/Service_Config.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "tao/Thread_Priority_Protocols_Hooks.h"

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

class TAO_POA;

class TAO_Export TAO_Default_Thread_Priority_Protocols_Hooks 
      : public TAO_Thread_Priority_Protocols_Hooks
{
public:

  /// destructor
  virtual ~TAO_Default_Thread_Priority_Protocols_Hooks (void);

  void init_hooks (TAO_ORB_Core *orb_core
                   ACE_ENV_ARG_DECL);

  int get_thread_CORBA_priority (CORBA::Short &
                                 ACE_ENV_ARG_DECL);

  int get_thread_native_priority (CORBA::Short &
                                  ACE_ENV_ARG_DECL);

  int get_thread_CORBA_and_native_priority (CORBA::Short &,
                                            CORBA::Short &
                                            ACE_ENV_ARG_DECL);

  int set_thread_CORBA_priority (CORBA::Short
                                 ACE_ENV_ARG_DECL);

  int set_thread_native_priority (CORBA::Short
                                  ACE_ENV_ARG_DECL);
};

TAO_END_VERSIONED_NAMESPACE_DECL

ACE_STATIC_SVC_DECLARE_EXPORT (TAO, TAO_Default_Thread_Priority_Protocols_Hooks)
ACE_FACTORY_DECLARE (TAO, TAO_Default_Thread_Priority_Protocols_Hooks)

#include /**/ "ace/post.h"
#endif /* TAO_DEFAULT_THREAD_PRIORITY_PROTOCOLS_HOOKS_H */