Skip to content

Commit

Permalink
Fix mismatch in context getter/setter names of default port (#2554)
Browse files Browse the repository at this point in the history
JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
  • Loading branch information
akosthekiss committed Oct 8, 2018
1 parent 4a0dd58 commit a9c6364
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/05.PORT-API.md
Expand Up @@ -252,10 +252,10 @@ static jerry_context_t *current_context_p = NULL;
* Set the current_context_p as the passed pointer.
*/
void
jerry_port_default_set_context (jerry_context_t *context_p) /**< points to the created context */
jerry_port_default_set_current_context (jerry_context_t *context_p) /**< points to the created context */
{
current_context_p = context_p;
} /* jerry_port_default_set_context */
} /* jerry_port_default_set_current_context */
/**
* Get the current context.
Expand Down
2 changes: 1 addition & 1 deletion jerry-main/main-unix.c
Expand Up @@ -608,7 +608,7 @@ main (int argc,
#ifdef JERRY_ENABLE_EXTERNAL_CONTEXT

jerry_context_t *context_p = jerry_create_context (512*1024, context_alloc, NULL);
jerry_port_default_set_context (context_p);
jerry_port_default_set_current_context (context_p);

#endif /* JERRY_ENABLE_EXTERNAL_CONTEXT */

Expand Down
4 changes: 2 additions & 2 deletions jerry-port/default/default-external-context.c
Expand Up @@ -26,10 +26,10 @@ static jerry_context_t *current_context_p = NULL;
* Set the current_context_p as the passed pointer.
*/
void
jerry_port_default_set_context (jerry_context_t *context_p) /**< points to the created context */
jerry_port_default_set_current_context (jerry_context_t *context_p) /**< points to the created context */
{
current_context_p = context_p;
} /* jerry_port_default_set_context */
} /* jerry_port_default_set_current_context */

/**
* Get the current context.
Expand Down
2 changes: 1 addition & 1 deletion jerry-port/default/include/jerryscript-port-default.h
Expand Up @@ -37,7 +37,7 @@ bool jerry_port_default_is_abort_on_fail (void);
jerry_log_level_t jerry_port_default_get_log_level (void);
void jerry_port_default_set_log_level (jerry_log_level_t level);

void jerry_port_default_set_context (jerry_context_t *context_p);
void jerry_port_default_set_current_context (jerry_context_t *context_p);

/**
* @}
Expand Down

0 comments on commit a9c6364

Please sign in to comment.