summaryrefslogtreecommitdiff
path: root/ACE/ace/MEM_Connector.inl
blob: 024ab5d8b5be86bdcf940ac877c6134863402938 (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
// -*- C++ -*-
//
// $Id$

// Establish a connection.

ACE_BEGIN_VERSIONED_NAMESPACE_DECL

ACE_INLINE ACE_MEM_IO::Signal_Strategy
ACE_MEM_Connector::preferred_strategy (void) const
{
  return this->preferred_strategy_;
}

ACE_INLINE void
ACE_MEM_Connector::preferred_strategy (ACE_MEM_IO::Signal_Strategy strategy)
{
  this->preferred_strategy_ = strategy;
}

ACE_INLINE ACE_MEM_SAP::MALLOC_OPTIONS &
ACE_MEM_Connector::malloc_options (void)
{
  // @@ This function has been deprecated and will be removed in the
  // future.

  return this->malloc_options_;
}

ACE_END_VERSIONED_NAMESPACE_DECL