commit | 2878d9921669aaceb840ce460be4026f039076ec | [log] [tgz] |
---|---|---|
author | Alexandre Julliard <julliard@winehq.org> | Fri Jan 13 13:58:14 2006 +0100 |
committer | Alexandre Julliard <julliard@winehq.org> | Fri Jan 13 13:58:14 2006 +0100 |
tree | e21c95fb0e7330727168f3168d10b828269388ae | |
parent | d6bfc17ba345047b83068612f4c44587d481e73c [diff] [blame] |
ntdll: Add debug registers to the context of all exceptions. Maintain a local cache of the debug registers to avoid server calls where possible.
diff --git a/server/thread.c b/server/thread.c index 3ffbf85..1c00ce7 100644 --- a/server/thread.c +++ b/server/thread.c
@@ -1094,6 +1094,7 @@ memset( data, 0, sizeof(CONTEXT) ); get_thread_context( thread, data, req->flags ); } + reply->self = (thread == current); release_object( thread ); }