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

Unified Diff: src/untrusted/irt/irt_memory.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/irt/irt_malloc.c ('k') | src/untrusted/nacl/sbrk_private.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/untrusted/irt/irt_memory.c
diff --git a/src/untrusted/irt/irt_memory.c b/src/untrusted/irt/irt_memory.c
index dbd8e738b5934809630fcbcc30228b928f52ea05..4f3dec4b1d6278b854778315a10ff973b04e812a 100644
--- a/src/untrusted/irt/irt_memory.c
+++ b/src/untrusted/irt/irt_memory.c
@@ -21,7 +21,7 @@ static int nacl_irt_sysbrk(void **newbrk) {
* TODO(mcgrathr): this interface should just go away!!
*/
void *requested = *newbrk;
- void *got = NACL_SYSCALL(sysbrk)(requested);
+ void *got = NACL_SYSCALL(brk)(requested);
if (got == requested || requested == NULL) {
*newbrk = got;
« no previous file with comments | « src/untrusted/irt/irt_malloc.c ('k') | src/untrusted/nacl/sbrk_private.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698