diff options
author | Alberto Ruiz <aruiz@um.es> | 2012-03-13 11:21:21 +0100 |
---|---|---|
committer | Alberto Ruiz <aruiz@um.es> | 2012-03-13 11:21:21 +0100 |
commit | 9c4a8a37291f902312215452d0bdd9ad95408ae9 (patch) | |
tree | 72d468cfa9999dc079466f250883dfb131d016ba /examples/devel | |
parent | 6f6455593c0490e4710854b08fc63a2d0993dcac (diff) | |
parent | 032fe19ddfa6e4cfba33f76aaa13043b54568fcf (diff) |
Merge remote-tracking branch 'wowus/master' into unsafe
Diffstat (limited to 'examples/devel')
-rw-r--r-- | examples/devel/ej1/wrappers.hs | 4 | ||||
-rw-r--r-- | examples/devel/ej2/wrappers.hs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/devel/ej1/wrappers.hs b/examples/devel/ej1/wrappers.hs index b329464..a88f74b 100644 --- a/examples/devel/ej1/wrappers.hs +++ b/examples/devel/ej1/wrappers.hs | |||
@@ -15,7 +15,7 @@ main = do | |||
15 | 15 | ||
16 | ----------------------------------------------------- | 16 | ----------------------------------------------------- |
17 | 17 | ||
18 | foreign import ccall "c_scale_vector" | 18 | foreign import ccall unsafe "c_scale_vector" |
19 | cScaleVector :: Double -- scale | 19 | cScaleVector :: Double -- scale |
20 | -> CInt -> Ptr Double -- argument | 20 | -> CInt -> Ptr Double -- argument |
21 | -> CInt -> Ptr Double -- result | 21 | -> CInt -> Ptr Double -- result |
@@ -29,7 +29,7 @@ myScale s x = unsafePerformIO $ do | |||
29 | ----------------------------------------------------- | 29 | ----------------------------------------------------- |
30 | -- forcing row order | 30 | -- forcing row order |
31 | 31 | ||
32 | foreign import ccall "c_diag" | 32 | foreign import ccall unsafe "c_diag" |
33 | cDiag :: CInt -> CInt -> Ptr Double -- argument | 33 | cDiag :: CInt -> CInt -> Ptr Double -- argument |
34 | -> CInt -> Ptr Double -- result1 | 34 | -> CInt -> Ptr Double -- result1 |
35 | -> CInt -> CInt -> Ptr Double -- result2 | 35 | -> CInt -> CInt -> Ptr Double -- result2 |
diff --git a/examples/devel/ej2/wrappers.hs b/examples/devel/ej2/wrappers.hs index 399c5a9..1c02a24 100644 --- a/examples/devel/ej2/wrappers.hs +++ b/examples/devel/ej2/wrappers.hs | |||
@@ -15,7 +15,7 @@ main = do | |||
15 | ----------------------------------------------------- | 15 | ----------------------------------------------------- |
16 | -- arbitrary data order | 16 | -- arbitrary data order |
17 | 17 | ||
18 | foreign import ccall "c_diag" | 18 | foreign import ccall unsafe "c_diag" |
19 | cDiag :: CInt -- matrix order | 19 | cDiag :: CInt -- matrix order |
20 | -> CInt -> CInt -> Ptr Double -- argument | 20 | -> CInt -> CInt -> Ptr Double -- argument |
21 | -> CInt -> Ptr Double -- result1 | 21 | -> CInt -> Ptr Double -- result1 |