<div dir="ltr"><div>I apologize for my previous post; I mistakenly pressed the send message keyboard shortcut.</div><div><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">Em sex., 12 de ago. de 2022 às 06:22, Manuel Bleichenbacher <<a href="mailto:manuel.bleichenbacher@gmail.com">manuel.bleichenbacher@gmail.com</a>> escreveu:<br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div><div><div>This is incorrect. WriteFile() indicates an error, but GetLastError() returns 0 (= NO_ERROR). Could it be that the debugger calls another Windows API function between those two functions, resetting the last error?</div><div><br></div><div>In my project that's a major issue. Since the software behaves incorrectly with the debugger, the software can no longer be debugged. This doesn't just affect it when debugging this particular piece of code but anytime this code is run in a debugging session.</div></div></div></div></blockquote><div><br></div><div><br></div><div>As far as I know, GetLastError and WSAGetLastError are getter-like functions for effectively thread local data.<br></div><div>It is safe to call Windows API functions from inside the same process but another thread.</div><div><br></div><div>The effect you are observing cannot be simply that of the JVM or the debugger is calling Windows API from some thread.</div><div>This effect must be that of the JVM or the debugger calling Windows API from inside your program's thread.</div><div><br></div><div>If either the JVM or the debugger is indeed "hijacking" program threads to call into Windows API functions, </div><div>this would be a blocker to using panama-based bindings to do anything useful with Windows API.</div></div><div>It would be impossible to drive Windows API or Windows Sockets correctly.</div><div>Overlapped I/O, for example, relies on GetLastError to distinguish between various non-error conditions.</div><div><br></div>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div>Pedro Lamarão</div></div></div></div>