annotate demo/refFun.urs @ 2174:ce312cad5ecd

Use correct OpenSSL thread safety macros on OS X (closes #209) Create an Autoconf test to determine if pthread_t is a pointer or scalar type, and use the appropriate CRYPTO_THREADID_set macro based on the result.
author Benjamin Barenblat <bbaren at mit.edu>
date Sun, 20 Sep 2015 17:46:07 -0400
parents cb5897276abf
children
rev   line source
adamc@419 1 functor Make(M : sig
adamc@419 2 type data
adamc@419 3 val inj : sql_injectable data
adamc@419 4 end) : sig
adamc@419 5 type ref
adamc@419 6 val new : M.data -> transaction ref
adamc@419 7 val read : ref -> transaction M.data
adamc@419 8 val write : ref -> M.data -> transaction unit
adamc@419 9 val delete : ref -> transaction unit
adamc@419 10 end