Use a proper sigcontext for Linux, just as is done for BSD.

This commit is contained in:
rth%cygnus.com 1998-12-11 18:35:52 +00:00
Родитель 111dcdf731
Коммит 37151cfd16
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -27,10 +27,10 @@ typedef CONTEXT ThreadContext;
#elif defined (__linux__)
#include <sys/ptrace.h>
#include <sigcontext.h>
typedef pid_t HANDLE;
typedef pt_regs ThreadContext;
typedef void* HANDLE;
typedef struct sigcontext ThreadContext;
#elif defined (__FreeBSD__)