blob: 9d761ef92b1c10b676d98cd98da4821f941e3a69 (
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
|
/* -*- C++ -*- */
// $Id$
// Service_Config.i
// This is the primary entry point into the ACE_Service_Config (the
// constructor just handles simple initializations).
ACE_INLINE int
ACE_Service_Config::open (int argc, char *argv[])
{
ACE_TRACE ("ACE_Service_Config::open");
ACE_Service_Config::parse_args (argc, argv);
return ACE_Service_Config::open (argv[0]);
}
// Compare two service descriptors for equality.
ACE_INLINE int
ACE_Static_Svc_Descriptor::operator== (struct ACE_Static_Svc_Descriptor &d) const
{
return ACE_OS::strcmp (name_, d.name_) == 0;
}
ACE_INLINE void
ACE_Service_Config::signal_handler (ACE_Sig_Adapter *signal_handler)
{
signal_handler_ = signal_handler;
}
|