Fix mismatch in context getter/setter names of default port (#2554)

JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
This commit is contained in:
Akos Kiss 2018-10-08 13:48:23 +02:00 committed by GitHub
parent 4a0dd587fc
commit a9c6364bce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 6 deletions

View File

@ -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.

View File

@ -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 */

View File

@ -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.

View File

@ -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);
/**
* @}