Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(771)

Unified Diff: src/pkg/runtime/windows/thread.c

Issue 1578041: code review 1578041: add Windows ForkExec, Syscall12 (Closed)
Patch Set: code review 1578041: add Windows ForkExec, Syscall12 Created 13 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/pkg/runtime/windows/syscall.goc ('k') | src/pkg/syscall/Makefile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/pkg/runtime/windows/thread.c
===================================================================
--- a/src/pkg/runtime/windows/thread.c
+++ b/src/pkg/runtime/windows/thread.c
@@ -285,7 +285,7 @@
call_syscall(void *args)
{
StdcallParams *p = (StdcallParams*)args;
- p->r = (uintptr)stdcall_raw((void*)p->fn, p->args[0], p->args[1], p->args[2], p->args[3], p->args[4], p->args[5], p->args[6], p->args[7], p->args[8]);
+ p->r = (uintptr)stdcall_raw((void*)p->fn, p->args[0], p->args[1], p->args[2], p->args[3], p->args[4], p->args[5], p->args[6], p->args[7], p->args[8], p->args[9], p->args[10], p->args[11]);
p->err = (uintptr)stdcall_raw(GetLastError);
return;
}
« no previous file with comments | « src/pkg/runtime/windows/syscall.goc ('k') | src/pkg/syscall/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b