File: clock.cabal

package info (click to toggle)
haskell-clock 0.2.0.0-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 68 kB
  • ctags: 24
  • sloc: ansic: 133; haskell: 80; makefile: 2
file content (41 lines) | stat: -rw-r--r-- 1,968 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
Name:               clock
Version:            0.2.0.0
License:            BSD3
License-file:       COPYING
Copyright:          (c) Cetin Sert 2009-2010, (c) Eugene Kirpichov 2010
Author:             Cetin Sert <cetin@sertcom.de>, Eugene Kirpichov <ekirpichov@gmail.com>
Maintainer:         Cetin Sert <cetin@sertcom.de>
Homepage:           http://corsis.sourceforge.net/index.php/Haskell/Clock
Category:           System
Synopsis:           High-resolution clock and timer functions:
                    realtime, monotonic, cputime, etc.
Description:        A package for convenient access to high-resolution
                    clock and timer functions of different operating
                    systems.
                    .
                    It is planned to consist of two layers. The lower
                    layer will provide direct access to OS-specific
                    clock and timer functions like clock_gettime of
                    Posix or GetTickCount of Windows and its upper
                    layer shall then provide a common API for all
                    supported systems. Currently only the lower level
                    is being developed.
                    .
                    .
                    POSIX reference: IEEE Std 1003.1-2008
                    <http://www.opengroup.org/onlinepubs/9699919799/>, 
                    <http://www.opengroup.org/onlinepubs/9699919799/functions/clock_getres.html#>
                    .
                    WINDOWS reference: ...
                    .
                    For more information, see:
                    <http://corsis.sourceforge.net/index.php/Haskell/Clock>
Stability:          Experimental
Build-type:         Simple
Build-depends:      base >= 2 && < 5
Exposed-Modules:    System.Posix.Clock
Extensions:         ForeignFunctionInterface
C-sources:	    csec/clock.c
Include-dirs:       csec
Install-includes:   clock.h
ghc-options:        -O2 -Wall -fglasgow-exts