Alexandre Julliard (@julliard) commented about server/mach.c:
return; }
- if (is_rosetta())
- {
/* Setting debug registers of a translated process is not supported cross-process
* (and even in-process, setting debug registers never has the desired effect).
*/
fprintf( stderr, "%04x: set_thread_context failed - Rosetta does not support debug registers\n", thread->id );
set_error( STATUS_UNSUCCESSFUL );
In general we don't want to print errors from the server, there's no guarantee that its stderr corresponds to the running app.
If it's important to show the message the error should be propagated to the client and printed there.