Release 1.5.29.
[wine] / server / ptrace.c
2013-02-13  Alexandre Julliardserver: Don't support debug registers in ptrace if...
2013-01-21  Alexandre Julliardserver: Use the __NR_ names for Linux system calls.
2012-09-24  Alexandre Julliardserver: Get rid of the waitpid wrapper.
2012-09-24  Adrian Bunkserver: Use waitpid() instead of wait4().
2012-05-29  AndrĂ© Hentschelserver: Add checks for DragonFly BSD.
2011-09-22  Henri Verbeetserver: Try writing to /proc/<pid>/mem in write_process...
2011-07-18  Grazvydas Ignotasserver: Set debug enable bits briefly to commit the...
2011-07-18  Grazvydas Ignotasserver: Set RW and LEN bits of DR7 before setting DR0...
2011-01-17  Austin Englishserver: Add missing checks for FreeBSD_kernel.
2010-12-27  Alexandre Julliardserver: Use the tgkill system call on all Linux platforms.
2010-07-28  Alexandre Julliardserver: Use tgkill to send signals on x86_64 too.
2010-07-28  Michael Stefaniucserver: Simplify tkill() and remove unreachable code...
2010-07-22  Maarten Lankhorstwineserver: Use syscall instead of int $0x80.
2010-07-21  Alexandre Julliardserver: Try to use /proc/pid/mem to read process memory...
2010-04-20  Eric Pouechserver: Fix write_process_memory on Wow64.
2010-04-08  Eric Pouechserver: Correctly set the DR0..7 registers on Linux...
2009-06-18  Alexandre Julliardserver: The ptrace interfaces uses longs, not ints.
2009-04-08  Alexandre Julliardserver: Define a generic context structure instead...
2008-12-31  Alexandre Julliardserver: Move ldt_copy to the init_process_done request...
2008-12-30  Alexandre Julliardserver: Make the address argument for read/write_proces...
2007-08-23  Tijl Coosemansserver: Use thr_kill2 syscall to signal threads on...
2007-08-09  Tijl Coosemansloader: Use thr_self syscall to get thread id on FreeBSD.
2007-03-17  Andrew Talbotserver: Replace inline static with static inline.
2007-01-18  Alexandre Julliardserver: Print a trace when sending a signal to a thread.
2006-12-29  Alexandre Julliardserver: Implement process control using Mach primitives...
2006-12-29  Alexandre Julliardserver: Add hooks to support process tracing mechanisms...
2006-12-29  Alexandre Julliardserver: Split get_thread_from_pid to allow lookups...
2006-11-15  Eric Pouechntdll: Fixed returned status for NtQueryThreadInformati...
2006-10-09  Andrew Talbotserver: Cast-qual warning fix.
2006-07-26  Michael Stefaniucserver: Fix some comparisons between signed and unsigned.
2006-07-26  Alexandre Julliardserver: Added data_size_t type to represent sizes in...
2006-07-25  Alexandre Julliardserver: Try harder to find a suitable thread for read...
2006-07-11  Alexandre Julliardserver: Fixed get_thread_context for x86_64.
2006-06-27  Alexandre Julliardserver: Moved get/set_thread_context implementation...
2006-05-23  Jonathan ErnstUpdate the address of the Free Software Foundation.
2006-04-13  Alexandre Julliardserver: Remove the use_ptrace variable.
2006-04-10  Alexandre Julliardserver: Moved the tkill function to ptrace.c.
2006-04-10  Alexandre Julliardserver: Removed the thread attached flag, since we...
2006-04-10  Alexandre Julliardserver: Always detach from the thread when we are done...
2006-04-07  Alexandre Julliardserver: Moved read/write_process_memory and get_selecto...
2006-04-03  Alexandre Julliardserver: Don't single step into signal handlers.
2006-02-14  Eric Pouechserver: When possible, use tgkill instead of tkill...
2005-11-28  Ge van GeldorpMatch PSDK STATUS_* definitions.
2005-08-22  Alexandre JulliardDon't try to detach from a thread that is exiting,...
2005-08-19  Alexandre JulliardAdded a watchdog mechanism to break out of the wait4...
2005-03-01  Alexandre JulliardConvert the per-process thread list to a standard list.
2003-08-21  Alexandre JulliardCope with wait4 being interrupted by a signal.
2003-05-06  Alexandre JulliardFixed a couple of races with exiting threads in suspend...
2003-04-26  Alexandre JulliardProperly handle the wait4 syscall failure on kernels...
2003-04-16  Alexandre JulliardFall back to kill() if the kernel doesn't support tkill().
2003-03-26  Alexandre JulliardAdded generic signal handling mechanism based on pipes...
2003-03-22  Alexandre JulliardMake a distinction between the thread Unix pid and...
2003-03-11  Alexandre JulliardAttaching the debugger to a running process should...
2003-03-10  Eric PouechFixed typo.
2003-03-04  Alexandre JulliardUse SIGUSR1 instead of SIGSTOP to suspend threads.
2003-02-25  Alexandre JulliardAdded send_thread_signal() function and properly handle...
2003-02-14  Alexandre JulliardChanged fd operations to take a struct fd instead of...
2003-02-01  Alexandre JulliardMade process and thread ids small integers instead...
2002-05-24  Alexandre JulliardA few optimizations in the process startup requests...
2002-03-09  Alexandre JulliardAdded LGPL standard comment, and copyright notices...
2002-01-12  Alexandre JulliardCheck unix_pid again after attach.
2001-07-14  Alexandre JulliardBacked out the suspend_process_for_ptrace change.
2001-04-27  Ove KaavenPreserve the TF (Trap Flag) when continuing from a...
2000-11-29  Dimitrie O. PaunDo not include sys/ptrace.h and sys/user.h unconditionally.
2000-10-17  Gerald PfeiferAdd appropriate casts to caddr_t for the third paramete...
2000-04-04  Alexandre JulliardIncrement suspend count before attempting attach in...
2000-03-17  Alexandre JulliardHave threads and processes exit more cleanly whenever...
2000-03-15  Alexandre JulliardAvoid SIGSTOP/SIGCONT race when ptrace is disabled.
2000-03-09  Alexandre JulliardStore the list of loaded dlls in the server, and genera...
1999-12-13  Alexandre JulliardUse poll() instead of select() for the server main...
1999-11-25  Alexandre JulliardMore portability fixes (thanks to Juergen Lock).
1999-11-21  Alexandre JulliardPortability fixes.
1999-11-14  Alexandre JulliardMoved ptrace support to ptrace.c. Tried to improve...