annotate tests/test.urs @ 2166:8a01e8f21de9

Make OpenSSL usage thread-safe (closes #206) Enable OpenSSL?s multithreading support by defining locking and thread-ID callbacks. Remove a lock obviated by this change.
author Benjamin Barenblat <bbaren@mit.edu>
date Thu, 06 Aug 2015 10:15:53 -0400
parents eac1974924bb
children
rev   line source
adamc@764 1 type t
adamc@764 2
adamc@764 3 val create : string -> t
adamc@764 4 val out : t -> string
adamc@764 5 val frob : t -> string -> t
adamc@765 6 val print : transaction unit
adamc@766 7
adamc@766 8 val foo : transaction unit
adamc@766 9 val bar : string -> transaction unit
adamc@771 10
adamc@771 11 val transactional : transaction unit