forked from KolibriOS/kolibrios
suballocator plus path fixes
git-svn-id: svn://kolibrios.org@7520 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
19
programs/develop/ktcc/trunk/libctest/traceadr.c
Normal file
19
programs/develop/ktcc/trunk/libctest/traceadr.c
Normal file
@@ -0,0 +1,19 @@
|
||||
#include <stdio.h>
|
||||
|
||||
# define TRACE1(s, a) printf(s, a)
|
||||
|
||||
void caller(void* ptr)
|
||||
{
|
||||
|
||||
ptr = 0xaaaaaaaa;
|
||||
TRACE1("caller is called from EIP@%x\n", *(int*)((char*)&ptr-4)-5);
|
||||
|
||||
}
|
||||
|
||||
|
||||
int main()
|
||||
{
|
||||
|
||||
caller(0xffffffff);
|
||||
}
|
||||
|
Reference in New Issue
Block a user