Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(689)

Unified Diff: src/untrusted/nacl/sysbrk.c

Issue 12209042: Ensure syscall functions are consistently prefixed with "NaClSys" (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/untrusted/nacl/sbrk_private.c ('k') | src/untrusted/nacl/syscall_bindings_trampoline.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/untrusted/nacl/sysbrk.c
diff --git a/src/untrusted/nacl/sysbrk.c b/src/untrusted/nacl/sysbrk.c
index 9e2ae1890da69765782436a5914c54557a942710..9d0e7ecc4da24861832808305d75d087d45e955a 100644
--- a/src/untrusted/nacl/sysbrk.c
+++ b/src/untrusted/nacl/sysbrk.c
@@ -7,5 +7,5 @@
#include "native_client/src/untrusted/nacl/syscall_bindings_trampoline.h"
void *sysbrk(void *new_break) {
- return NACL_SYSCALL(sysbrk)(new_break);
+ return NACL_SYSCALL(brk)(new_break);
}
« no previous file with comments | « src/untrusted/nacl/sbrk_private.c ('k') | src/untrusted/nacl/syscall_bindings_trampoline.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698