forked from miking-lang/miking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrtppl-ext.mc
33 lines (26 loc) · 1.39 KB
/
rtppl-ext.mc
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
type Signal = Int
-- Overrides the signal handler for the SIGINT signal.
external setSigintHandler : (Signal -> ()) -> ()
-- Functions for accessing different the time according to different clocks and
-- using this to sleep until an absolute point in time. The timespec contains
-- a specification of the time of the format (seconds, nanoseconds).
type Timespec = (Int, Int)
external getMonotonicTime : () -> Timespec
external getWallClockTime : () -> Timespec
external getProcessCpuTime : () -> Timespec
external clockNanosleep : Timespec -> ()
-- Sets the priority of the process, returning the previous priority
external rtpplSetMaxPriority : () -> Int
external rtpplSetPriority : Int -> Int
-- Opens and closes file descriptors
external rtpplOpenFileDescriptor : String -> Int
external rtpplCloseFileDescriptor : Int -> ()
type Opaque
-- Writing and reading RTPPL data types to and from a given file descriptor.
external rtpplReadFloat : Int -> [(Timespec, Float)]
external rtpplWriteFloat : Int -> (Timespec, Float) -> ()
external rtpplReadDistFloat : Int -> [(Timespec, [(Float, Float)])]
external rtpplWriteDistFloat : Int -> (Timespec, ([Float], [Float])) -> ()
external rtpplReadDistFloatRecord : Int -> Int -> [(Timespec, [(Float, Opaque)])]
external rtpplWriteDistFloatRecord : Int -> Int -> (Timespec, ([Opaque], [Float])) -> ()
external rtpplBatchedInference : (() -> Opaque) -> Timespec -> [Opaque]