Advertisement
Guest User

Untitled

a guest
May 25th, 2016
523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. Index: dll/win32/kernel32/client/thread.c
  2. ===================================================================
  3. --- dll/win32/kernel32/client/thread.c (revision 71397)
  4. +++ dll/win32/kernel32/client/thread.c (working copy)
  5. @@ -978,8 +978,10 @@
  6. WINAPI
  7. SetThreadStackGuarantee(IN OUT PULONG StackSizeInBytes)
  8. {
  9. - UNIMPLEMENTED;
  10. - return FALSE;
  11. + static int once;
  12. + if (once++ == 0)
  13. + DPRINT1("SetThreadStackGuarantee(%p): stub\n", StackSizeInBytes);
  14. + return TRUE;
  15. }
  16.  
  17. /*
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement