Add support for Darwin's ptrace.

oldstable
Pierre d'Herbemont 2003-05-12 03:07:45 +00:00 committed by Alexandre Julliard
parent 7ebdcb3538
commit 87c15681b2
1 changed files with 12 additions and 0 deletions

View File

@ -33,6 +33,18 @@
# include <sys/ptrace.h>
#endif
#ifndef PTRACE_PEEKUSER
# ifdef PT_READ_D
# define PTRACE_PEEKUSER PT_READ_D
# endif
#endif /* PTRACE_PEEKUSER */
#ifndef PTRACE_POKEUSER
# ifdef PT_WRITE_D
# define PTRACE_POKEUSER PT_WRITE_D
# endif
#endif /* PTRACE_POKEUSER */
#include "winbase.h"
#include "file.h"