summaryrefslogtreecommitdiff
path: root/ace/Svc_Conf.y
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-09-12 03:37:51 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-09-12 03:37:51 +0000
commitfb59ede8031fb55739160a0753d2a4cd2d6546af (patch)
treeb7abff4feff6894c93ec2ec491fcc93a0df9199c /ace/Svc_Conf.y
parentbf52076b82447057f33cd5ca6fc7ab8fd955c9c1 (diff)
downloadATCD-fb59ede8031fb55739160a0753d2a4cd2d6546af.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Svc_Conf.y')
-rw-r--r--ace/Svc_Conf.y20
1 files changed, 10 insertions, 10 deletions
diff --git a/ace/Svc_Conf.y b/ace/Svc_Conf.y
index a5da4ab7804..d29021c2274 100644
--- a/ace/Svc_Conf.y
+++ b/ace/Svc_Conf.y
@@ -184,13 +184,13 @@ svc_location
: ACE_IDENT type svc_initializer status
{
u_int flags
- = ACE_Service_Type::DELETE_THIS | ($3->dispose () == 0 ? 0 : ACE_Service_Type::DELETE_OBJ);
+ = ACE_Service_Type_Impl::DELETE_THIS | ($3->dispose () == 0 ? 0 : ACE_Service_Type_Impl::DELETE_OBJ);
const void *sym = $3->symbol ();
if (sym != 0)
{
- ACE_Service_Type *stp = ace_create_service_type ($1, $2, $3->symbol (), flags);
- $$ = new ACE_Service_Record ($1, stp, $3->handle (), $4);
+ ACE_Service_Type_Impl *stp = ace_create_service_type ($1, $2, $3->symbol (), flags);
+ $$ = new ACE_Service_Type ($1, stp, $3->handle (), $4);
}
else
{
@@ -269,8 +269,8 @@ yyerror (char *s)
static ACE_Module_Type *
get_module (ACE_Static_Node *str_rec, const char *svc_name)
{
- const ACE_Service_Record *sr = str_rec->record ();
- const ACE_Service_Type *type = sr->type ();
+ const ACE_Service_Type *sr = str_rec->record ();
+ const ACE_Service_Type_Impl *type = sr->type ();
ACE_Stream_Type *st = sr == 0 ? 0 : (ACE_Stream_Type *) type;
ACE_Module_Type *mt = st == 0 ? 0 : st->find (svc_name);
@@ -286,10 +286,10 @@ get_module (ACE_Static_Node *str_rec, const char *svc_name)
static ACE_Module_Type *
get_module (ACE_Static_Node *str_rec, ACE_Static_Node *svc_type)
{
- const ACE_Service_Record *sr = str_rec->record ();
- const ACE_Service_Type *type = sr->type ();
+ const ACE_Service_Type *sr = str_rec->record ();
+ const ACE_Service_Type_Impl *type = sr->type ();
ACE_Stream_Type *st = sr == 0 ? 0 : (ACE_Stream_Type *) type;
- const ACE_Service_Record *sv = svc_type->record ();
+ const ACE_Service_Type *sv = svc_type->record ();
type = sv->type ();
ACE_Module_Type *mt = (ACE_Module_Type *) type;
@@ -302,13 +302,13 @@ get_module (ACE_Static_Node *str_rec, ACE_Static_Node *svc_type)
return mt;
}
-ACE_Service_Type *
+ACE_Service_Type_Impl *
ace_create_service_type (const char *name,
int type,
const void *symbol,
u_int flags)
{
- ACE_Service_Type *stp = 0;
+ ACE_Service_Type_Impl *stp = 0;
// Note, the only place we need to put a case statement. This is
// also the place where we'd put the RTTI tests, if the compiler