Я работаю с указателями на функции в c, потому что мне нужен механизм обратного вызова для моей пользовательской библиотеки API.Подводя итог простому примеру:
*userfunction*(SY_msg msg)
{
/* do something */
};
Размер SY_msg составляет 1024 байта.Поэтому в стеке находится 1024 байта.
Указатель на userfuncion () присутствует в качестве первого элемента в calback_wrapper [].
here is an example of use:
// (...) some code
SY_msg* msg;
msg = SYmalloc (sizeof(SY_msg)); /* it takes 1024 bytes in heap */
// (...) some code
calback_wrapper[0] (*msg); /* 1204 are passed by value */
/* during userfunction() execution , 1024 unused bytes are present in the heap */
free (msg); /* now finally heap is free */
// (...) some code
Но я бы хотелиметь следующее:
// (...) some code
SY_msg* msg;
msg = SYmalloc (sizeof(SY_msg)); /* it takes 1024 bytes in heap */
// (...) some code
memcpy(someplace,msg,sizeof(SY_msg); /* where "someplace" is a point in the stack referred by the argument of userfunction() */
free (msg); /* heap is free */
calback_wrapper[0] (*someplace); /* is starts userfunction() execution */
// (...) some code
Можно ли найти «где-то» адрес?Мой компилятор gcc.