nativeMaschine: s/unsigned int/ptrdiff_t/g
[mate.git] / ffi / trap.c
index e0878b2bb0a296989934bf48b9314c355fb0d0df..301f2060ce47f5252bb4d2dfd73112efa069d9a7 100644 (file)
@@ -1,5 +1,6 @@
 #include <stdio.h>
 #include <stdlib.h>
+#include <stddef.h>
 
 #include "../debug.h"
 
@@ -21,8 +22,7 @@
 
 #include <sys/ucontext.h>
 
-unsigned int mallocObject(int);
-unsigned int mateHandler(unsigned int, unsigned int, unsigned int, unsigned int);
+ptrdiff_t mateHandler(ptrdiff_t, ptrdiff_t, ptrdiff_t, ptrdiff_t);
 
 #ifdef DBG_TRAP
 #define dprintf(args...) do { printf (args); } while (0);
@@ -30,19 +30,17 @@ unsigned int mateHandler(unsigned int, unsigned int, unsigned int, unsigned int)
 #define dprintf(args...)
 #endif
 
-void mainresult(unsigned int a)
-{
-       dprintf("mainresult: 0x%08x\n", a);
-}
-
 void chandler(int nSignal, siginfo_t *info, void *ctx)
 {
        mcontext_t *mctx = &((ucontext_t *) ctx)->uc_mcontext;
 
-       unsigned int eip = (unsigned int) mctx->gregs[REG_EIP];
-       unsigned int eax = (unsigned int) mctx->gregs[REG_EAX];
-       unsigned int ebx = (unsigned int) mctx->gregs[REG_EBX];
-       unsigned int esp = (unsigned int) mctx->gregs[REG_ESP];
+       ptrdiff_t eip = (ptrdiff_t) mctx->gregs[REG_EIP];
+       ptrdiff_t eax = (ptrdiff_t) mctx->gregs[REG_EAX];
+       ptrdiff_t ebx = (ptrdiff_t) mctx->gregs[REG_EBX];
+       ptrdiff_t esp = (ptrdiff_t) mctx->gregs[REG_ESP];
+       dprintf("trap: type %d, eip 0x%08x, eax 0x%08x, ebx 0x%08x, "
+                       "esp 0x%08x, *esp 0x%08x\n", nSignal, eip,
+                       eax, ebx, esp, *(ptrdiff_t*) esp);
 
        mctx->gregs[REG_EIP] = mateHandler(eip, eax, ebx, esp);
 }
@@ -61,13 +59,3 @@ void register_signal(void)
        segvaction.sa_flags = SA_SIGINFO | SA_RESTART | SA_NODEFER;
        sigaction(SIGSEGV, &segvaction, NULL);
 }
-
-unsigned int getaddr(void)
-{
-       return (unsigned int) mainresult;
-}
-
-unsigned int getMallocObjectAddr(void)
-{
-       return (unsigned int) mallocObject;
-}