Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gesh
GHC
Commits
226b5062
Commit
226b5062
authored
25 years ago
by
sof
Browse files
Options
Downloads
Patches
Plain Diff
[project @ 1999-04-12 18:32:17 by sof]
Added Haskell wrapper for freeHaskellFunctionPtr()
parent
358b8cde
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ghc/lib/exts/IOExts.lhs
+18
-0
18 additions, 0 deletions
ghc/lib/exts/IOExts.lhs
with
18 additions
and
0 deletions
ghc/lib/exts/IOExts.lhs
+
18
−
0
View file @
226b5062
...
...
@@ -52,6 +52,8 @@ module IOExts
#endif
, unsafePtrEq
, freeHaskellFunctionPtr
) where
...
...
@@ -73,6 +75,7 @@ import PrelGHC
import PrelHandle
import PrelErr
import IO ( hPutStr, hPutChar )
import PrelAddr ( Addr )
#endif
import Ix
...
...
@@ -184,3 +187,18 @@ performGC = _ccall_GC_ performGC
#endif
\end{code}
When using 'foreign export dynamic' to dress up a Haskell
IO action to look like a C function pointer, a little bit
of memory is allocated (along with a stable pointer to
the Haskell IO action). When done with the C function
pointer, you'll need to call @freeHaskellFunctionPtr()@ to
let go of these resources - here's the Haskell wrapper for
that RTS entry point, should you want to free it from
within Haskell.
\begin{code}
foreign import ccall "freeHaskellFunctionPtr"
freeHaskellFunctionPtr :: Addr -> IO ()
\end{code}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment