Skip to content

Commit

Permalink
Renaming Parrot_regenerate_HLL_namespaces() to Parrot_hll_regenerate_…
Browse files Browse the repository at this point in the history
…HLL_namespaces()
  • Loading branch information
fernandobrito committed Nov 29, 2010
1 parent 35090a7 commit f7134de
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/embed.pod
Expand Up @@ -1356,7 +1356,7 @@ The list may also be augmented if additional functionality is required.

=item C<Parrot_util_range_rand>

=item C<Parrot_regenerate_HLL_namespaces>
=item C<Parrot_hll_regenerate_HLL_namespaces>

=item C<Parrot_register_encoding>

Expand Down
4 changes: 2 additions & 2 deletions include/parrot/hll.h
Expand Up @@ -52,7 +52,7 @@ INTVAL Parrot_hll_get_HLL_type(PARROT_INTERP, INTVAL hll_id, INTVAL core_type)
__attribute__nonnull__(1);

PARROT_EXPORT
void Parrot_regenerate_HLL_namespaces(PARROT_INTERP)
void Parrot_hll_regenerate_HLL_namespaces(PARROT_INTERP)
__attribute__nonnull__(1);

PARROT_EXPORT
Expand Down Expand Up @@ -82,7 +82,7 @@ void Parrot_hll_init_HLL(PARROT_INTERP)
PARROT_ASSERT_ARG(interp))
#define ASSERT_ARGS_Parrot_hll_get_HLL_type __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(interp))
#define ASSERT_ARGS_Parrot_regenerate_HLL_namespaces \
#define ASSERT_ARGS_Parrot_hll_regenerate_HLL_namespaces \
__attribute__unused__ int _ASSERT_ARGS_CHECK = (\
PARROT_ASSERT_ARG(interp))
#define ASSERT_ARGS_Parrot_hll_register_HLL __attribute__unused__ int _ASSERT_ARGS_CHECK = (\
Expand Down
6 changes: 3 additions & 3 deletions src/hll.c
Expand Up @@ -418,7 +418,7 @@ Parrot_hll_get_HLL_namespace(PARROT_INTERP, int hll_id)

/*
=item C<void Parrot_regenerate_HLL_namespaces(PARROT_INTERP)>
=item C<void Parrot_hll_regenerate_HLL_namespaces(PARROT_INTERP)>
Create all HLL namespaces that don't already exist. This is necessary when
creating a new interpreter which shares an old interpreter's HLL_info.
Expand All @@ -429,9 +429,9 @@ creating a new interpreter which shares an old interpreter's HLL_info.

PARROT_EXPORT
void
Parrot_regenerate_HLL_namespaces(PARROT_INTERP)
Parrot_hll_regenerate_HLL_namespaces(PARROT_INTERP)
{
ASSERT_ARGS(Parrot_regenerate_HLL_namespaces)
ASSERT_ARGS(Parrot_hll_regenerate_HLL_namespaces)
const INTVAL n = VTABLE_elements(interp, interp->HLL_info);
INTVAL hll_id;

Expand Down
2 changes: 1 addition & 1 deletion src/pmc/parrotinterpreter.pmc
Expand Up @@ -82,7 +82,7 @@ clone_interpreter(Parrot_Interp d, Parrot_Interp s, INTVAL flags)
/* we'd like to share the HLL data. Give it a PMC_sync structure
if it doesn't have one already */
d->HLL_info = s->HLL_info;
Parrot_regenerate_HLL_namespaces(d);
Parrot_hll_regenerate_HLL_namespaces(d);
}

if (flags & (PARROT_CLONE_LIBRARIES | PARROT_CLONE_CLASSES)) {
Expand Down

0 comments on commit f7134de

Please sign in to comment.