Skip to content

Commit

Permalink
Renaming Parrot_init_HLL() to Parrot_hll_init_HLL()
Browse files Browse the repository at this point in the history
  • Loading branch information
fernandobrito committed Nov 29, 2010
1 parent 056265d commit 5e02476
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions include/parrot/hll.h
Expand Up @@ -67,7 +67,7 @@ void Parrot_register_HLL_type(PARROT_INTERP,
INTVAL hll_type)
__attribute__nonnull__(1);

void Parrot_init_HLL(PARROT_INTERP)
void Parrot_hll_init_HLL(PARROT_INTERP)
__attribute__nonnull__(1);

#define ASSERT_ARGS_Parrot_get_ctx_HLL_namespace __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
Expand All @@ -90,7 +90,7 @@ void Parrot_init_HLL(PARROT_INTERP)
, PARROT_ASSERT_ARG(hll_name))
#define ASSERT_ARGS_Parrot_register_HLL_type __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(interp))
#define ASSERT_ARGS_Parrot_init_HLL __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
#define ASSERT_ARGS_Parrot_hll_init_HLL __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(interp))
/* Don't modify between HEADERIZER BEGIN / HEADERIZER END. Your changes will be lost. */
/* HEADERIZER END: src/hll.c */
Expand Down
2 changes: 1 addition & 1 deletion src/global_setup.c
Expand Up @@ -235,7 +235,7 @@ Parrot_gbl_setup_2(PARROT_INTERP)

/* create the namespace root stash */
interp->root_namespace = Parrot_pmc_new(interp, enum_class_NameSpace);
Parrot_init_HLL(interp);
Parrot_hll_init_HLL(interp);

Parrot_pcc_set_namespace(interp, CURRENT_CONTEXT(interp),
VTABLE_get_pmc_keyed_int(interp, interp->HLL_namespace, 0));
Expand Down
6 changes: 3 additions & 3 deletions src/hll.c
Expand Up @@ -95,7 +95,7 @@ new_hll_entry(PARROT_INTERP, ARGIN_NULLOK(STRING *entry_name))

/*
=item C<void Parrot_init_HLL(PARROT_INTERP)>
=item C<void Parrot_hll_init_HLL(PARROT_INTERP)>
Initialises the HLL_info and HLL_namespace fields of the interpreter structure.
Registers the default HLL namespace "parrot".
Expand All @@ -105,9 +105,9 @@ Registers the default HLL namespace "parrot".
*/

void
Parrot_init_HLL(PARROT_INTERP)
Parrot_hll_init_HLL(PARROT_INTERP)
{
ASSERT_ARGS(Parrot_init_HLL)
ASSERT_ARGS(Parrot_hll_init_HLL)
interp->HLL_info =
Parrot_pmc_new(interp, enum_class_OrderedHash);
interp->HLL_namespace =
Expand Down

0 comments on commit 5e02476

Please sign in to comment.