X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/61427a88a76a2c2ef25d0d5b8132995c6f550e5c..df078bae24388cc0dd63b2bbafe05897a0dd45f8:/src/bindings/lua/lua_debug.cpp diff --git a/src/bindings/lua/lua_debug.cpp b/src/bindings/lua/lua_debug.cpp index c02d921fdf..854e1adb4a 100644 --- a/src/bindings/lua/lua_debug.cpp +++ b/src/bindings/lua/lua_debug.cpp @@ -1,10 +1,9 @@ -/* Copyright (c) 2010-2016. The SimGrid Team. +/* Copyright (c) 2010-2018. The SimGrid Team. * All rights reserved. * * This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ - /* * This file contains functions that aid users to debug their lua scripts; for instance, * tables can be easily output and values are represented in a human-readable way. (For instance, @@ -12,10 +11,8 @@ * */ /* SimGrid Lua debug functions */ -extern "C" { #include -} -#include "lua_utils.h" +#include "lua_utils.hpp" #include "xbt.h" XBT_LOG_NEW_DEFAULT_CATEGORY(lua_debug, "Lua bindings (helper functions)"); @@ -172,13 +169,13 @@ void sglua_stack_dump(lua_State* L, const char* msg) } /** - * \brief Like luaL_checkudata, with additional debug logs. + * @brief Like luaL_checkudata, with additional debug logs. * * This function is for debugging purposes only. * - * \param L a lua state - * \param ud index of the userdata to check in the stack - * \param tname key of the metatable of this userdata in the registry + * @param L a lua state + * @param ud index of the userdata to check in the stack + * @param tname key of the metatable of this userdata in the registry */ void* sglua_checkudata_debug(lua_State* L, int ud, const char* tname) { @@ -215,13 +212,12 @@ void* sglua_checkudata_debug(lua_State* L, int ud, const char* tname) * @param size number of bytes of data * @param userdata the memory buffer to write */ -int sglua_memory_writer(lua_State* L, const void* source, size_t size, - void* userdata) { - - sglua_buffer_t buffer = (sglua_buffer_t) userdata; +int sglua_memory_writer(lua_State* L, const void* source, size_t size, void* userdata) +{ + sglua_buffer_t buffer = static_cast(userdata); while (buffer->capacity < buffer->size + size) { buffer->capacity *= 2; - buffer->data = (char*)xbt_realloc(buffer->data, buffer->capacity); + buffer->data = static_cast(xbt_realloc(buffer->data, buffer->capacity)); } memcpy(buffer->data + buffer->size, source, size); buffer->size += size;