this repo has no description
1opam-version: "2.0" 2maintainer: "Thomas Leonard <talex5@gmail.com>" 3authors: "Thomas Leonard <talex5@gmail.com>" 4homepage: "https://github.com/mirage/mirage-profile" 5dev-repo: "git+https://github.com/mirage/mirage-profile.git" 6bug-reports: "https://github.com/mirage/mirage-profile/issues" 7doc: "https://mirage.github.io/mirage-profile" 8license: "BSD-2-clause" 9 10build: [ 11 ["jbuilder" "subst" "-p" name] {dev} 12 [ "jbuilder" "build" "-p" name "-j" jobs ] 13] 14 15depends: [ 16 "ocaml" {>= "4.03.0"} 17 "jbuilder" {>= "1.0+beta9"} 18 "mirage-profile" {= "0.8.2"} 19 "mirage-xen" {>="3.3.0" & <"4.0.0"} 20 "io-page-xen" 21 "io-page" 22 "mirage-xen-minios" 23 "ocplib-endian" 24] 25synopsis: "Collect runtime profiling information in CTF format" 26description: """ 27This library can be used to trace execution of OCaml/Lwt programs (such as Mirage unikernels) at the level of Lwt threads. 28The traces can be viewed using JavaScript or GTK viewers provided by [mirage-trace-viewer][] or processed by tools supporting the [Common Trace Format (CTF)][ctf]. 29Some example traces can be found in the blog post [Visualising an Asynchronous Monad](http://roscidus.com/blog/blog/2014/10/27/visualising-an-asynchronous-monad/). 30 31Libraries can use the functions mirage-profile provides to annotate the traces with extra information. 32When compiled against a normal version of Lwt, mirage-profile's functions are null-ops (or call the underlying untraced operation, as appropriate) and OCaml's cross-module inlining will optimise these calls away, meaning there should be no overhead in the non-profiling case.""" 33url { 34 src: 35 "https://github.com/mirage/mirage-profile/releases/download/v0.8.2/mirage-profile-0.8.2.tbz" 36 checksum: [ 37 "sha256=0680a8545f64eabe9496ce9f52c20ecff82c18a4159fceca4e91890e525fe2c4" 38 "md5=7f094bcb0b81746a712326ea583b2e76" 39 ] 40} 41flags: deprecated 42post-messages: [ "mirage-profile-xen is deprecated" ]