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

« back to all changes in this revision

Viewing changes to ace/POSIX_Proactor.i

  • 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
 
// POSIX_Proactor.i,v 4.6 2002/11/14 23:13:08 crodrigu Exp
3
 
 
4
 
ACE_INLINE 
5
 
ACE_POSIX_Proactor::Proactor_Type ACE_POSIX_Proactor::get_impl_type (void)
6
 
{
7
 
  return PROACTOR_POSIX;
8
 
9
 
 
10
 
ACE_INLINE 
11
 
ACE_POSIX_Proactor::Proactor_Type ACE_POSIX_AIOCB_Proactor::get_impl_type (void)
12
 
{
13
 
  return PROACTOR_AIOCB;
14
 
15
 
 
16
 
#if defined(ACE_HAS_POSIX_REALTIME_SIGNALS)
17
 
 
18
 
ACE_INLINE 
19
 
ACE_POSIX_Proactor::Proactor_Type ACE_POSIX_SIG_Proactor::get_impl_type (void)
20
 
{
21
 
  return PROACTOR_SIG;
22
 
23
 
 
24
 
#endif /* ACE_HAS_POSIX_REALTIME_SIGNALS */
25
 
 
26
 
ACE_INLINE 
27
 
ACE_Asynch_Pseudo_Task& ACE_POSIX_Proactor::get_asynch_pseudo_task (void)
28
 
{
29
 
  return this->pseudo_task_;
30
 
}