packages feed

bindings-posix 1.0 → 1.0.1

raw patch · 4 files changed

+9/−7 lines, 4 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

+ Bindings.Posix.Signal: instance Eq C'sigset_t
+ Bindings.Posix.Signal: instance Show C'sigset_t
+ Bindings.Posix.Sys.Select: instance Eq C'fd_set
+ Bindings.Posix.Sys.Select: instance Eq C'timeval
+ Bindings.Posix.Sys.Select: instance Show C'fd_set
+ Bindings.Posix.Sys.Select: instance Show C'timeval
+ Bindings.Posix.Sys.Types: instance Eq C'pthread_attr_t
+ Bindings.Posix.Sys.Types: instance Eq C'pthread_barrier_t
+ Bindings.Posix.Sys.Types: instance Eq C'pthread_barrierattr_t
+ Bindings.Posix.Sys.Types: instance Eq C'pthread_cond_t
+ Bindings.Posix.Sys.Types: instance Eq C'pthread_condattr_t
+ Bindings.Posix.Sys.Types: instance Eq C'pthread_key_t
+ Bindings.Posix.Sys.Types: instance Eq C'pthread_mutex_t
+ Bindings.Posix.Sys.Types: instance Eq C'pthread_mutexattr_t
+ Bindings.Posix.Sys.Types: instance Eq C'pthread_once_t
+ Bindings.Posix.Sys.Types: instance Eq C'pthread_rwlock_t
+ Bindings.Posix.Sys.Types: instance Eq C'pthread_rwlockattr_t
+ Bindings.Posix.Sys.Types: instance Eq C'pthread_spinlock_t
+ Bindings.Posix.Sys.Types: instance Eq C'pthread_t
+ Bindings.Posix.Sys.Types: instance Show C'pthread_attr_t
+ Bindings.Posix.Sys.Types: instance Show C'pthread_barrier_t
+ Bindings.Posix.Sys.Types: instance Show C'pthread_barrierattr_t
+ Bindings.Posix.Sys.Types: instance Show C'pthread_cond_t
+ Bindings.Posix.Sys.Types: instance Show C'pthread_condattr_t
+ Bindings.Posix.Sys.Types: instance Show C'pthread_key_t
+ Bindings.Posix.Sys.Types: instance Show C'pthread_mutex_t
+ Bindings.Posix.Sys.Types: instance Show C'pthread_mutexattr_t
+ Bindings.Posix.Sys.Types: instance Show C'pthread_once_t
+ Bindings.Posix.Sys.Types: instance Show C'pthread_rwlock_t
+ Bindings.Posix.Sys.Types: instance Show C'pthread_rwlockattr_t
+ Bindings.Posix.Sys.Types: instance Show C'pthread_spinlock_t
+ Bindings.Posix.Sys.Types: instance Show C'pthread_t
+ Bindings.Posix.Sys.Utsname: instance Eq C'utsname
+ Bindings.Posix.Sys.Utsname: instance Show C'utsname
+ Bindings.Posix.Time: instance Eq C'timespec
+ Bindings.Posix.Time: instance Show C'timespec
- Bindings.Posix.Sys.Utsname: C'utsname :: CString -> CString -> CString -> CString -> CString -> C'utsname
+ Bindings.Posix.Sys.Utsname: C'utsname :: [CChar] -> [CChar] -> [CChar] -> [CChar] -> [CChar] -> C'utsname
- Bindings.Posix.Sys.Utsname: utsname'machine :: C'utsname -> CString
+ Bindings.Posix.Sys.Utsname: utsname'machine :: C'utsname -> [CChar]
- Bindings.Posix.Sys.Utsname: utsname'nodename :: C'utsname -> CString
+ Bindings.Posix.Sys.Utsname: utsname'nodename :: C'utsname -> [CChar]
- Bindings.Posix.Sys.Utsname: utsname'release :: C'utsname -> CString
+ Bindings.Posix.Sys.Utsname: utsname'release :: C'utsname -> [CChar]
- Bindings.Posix.Sys.Utsname: utsname'sysname :: C'utsname -> CString
+ Bindings.Posix.Sys.Utsname: utsname'sysname :: C'utsname -> [CChar]
- Bindings.Posix.Sys.Utsname: utsname'version :: C'utsname -> CString
+ Bindings.Posix.Sys.Utsname: utsname'version :: C'utsname -> [CChar]

Files

.hg_archival.txt view
@@ -1,2 +1,2 @@ repo: c1d900fe279ed394e13fbfd3c5d65142fc21d6e9-node: ffac32b2f31620096c144b276006c5c0d2748379+node: 3ab42787c4ec1e8fbd617ef55233b3d47c6258b3
.hgtags view
@@ -1,1 +1,3 @@ e869165f6d328791ed6913c6cdfa1b64708fc171 0.0.2+ffac32b2f31620096c144b276006c5c0d2748379 1.0+d7dd4dbdf8b4fa64a1de71d562799ad6ba70d64a 1.0.1
bindings-posix.cabal view
@@ -3,7 +3,7 @@ homepage: http://bitbucket.org/mauricio/bindings-posix synopsis:   Low level bindings to posix.-version: 1.0+version: 1.0.1 license: BSD3 license-file: LICENSE maintainer: Maurício C. Antunes <mauricio.antunes@gmail.com>
src/Bindings/Posix/Sys/Utsname.hsc view
@@ -8,11 +8,11 @@ import Foreign.C  #starttype struct utsname-#field sysname , CString-#field nodename , CString-#field release , CString-#field version , CString-#field machine , CString+#array_field sysname , CChar+#array_field nodename , CChar+#array_field release , CChar+#array_field version , CChar+#array_field machine , CChar #stoptype  #ccall uname , Ptr <utsname> -> IO CInt