diff options
author | Simon Marlow <simonmar@microsoft.com> | 2006-06-01 12:33:14 +0000 |
---|---|---|
committer | Simon Marlow <simonmar@microsoft.com> | 2006-06-01 12:33:14 +0000 |
commit | e913091815156cbb54fa0d2cc786ccad24ca1c11 (patch) | |
tree | e1f21e71aefdf6370a363614f9f1f9c7c5595c37 /includes | |
parent | e53f09de573cdda360a72e94553b2eecd747497c (diff) | |
download | haskell-e913091815156cbb54fa0d2cc786ccad24ca1c11.tar.gz |
stgMallocBytesRWX --> allocateExec
Diffstat (limited to 'includes')
-rw-r--r-- | includes/RtsExternal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/RtsExternal.h b/includes/RtsExternal.h index 61a920b0ab..58db11c42f 100644 --- a/includes/RtsExternal.h +++ b/includes/RtsExternal.h @@ -77,7 +77,7 @@ extern StgInt *signal_handlers; #endif extern void setIOManagerPipe (int fd); -extern void* stgMallocBytesRWX(int len); +extern void* allocateExec(int len); /* ----------------------------------------------------------------------------- Storage manager stuff exported |