From 38dda9e9dec3108d1ba801b4a69510bfed962f22 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Fri, 19 Dec 2014 01:57:12 +0000 Subject: Doc fixes --- doc/libs6lock/index.html | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'doc/libs6lock') diff --git a/doc/libs6lock/index.html b/doc/libs6lock/index.html index 3696b41..7237823 100644 --- a/doc/libs6lock/index.html +++ b/doc/libs6lock/index.html @@ -70,10 +70,10 @@ practices.
 s6lock_t a = S6LOCK_ZERO ;
-struct taia deadline ;
+tain_t deadline ;
 
-taia_now_g() ;
-taia_addsec_g(&deadline, 2)
+tain_now_g() ;
+tain_addsec_g(&deadline, 2)
 
 char const *path = S6LOCK_IPCPATH ;
 s6lock_start_g(&a, path, &deadline) ;
@@ -128,8 +128,8 @@ s6lock_end(&a) ;
 
 uint16 id ;
 char const *file = "lockfile" ;
-struct taia limit ;
-struct taia deadline ;
+tain_t limit ;
+tain_t deadline ;
 
 int r = s6lock_acquire_sh_g (&a, &id, file, &limit, &deadline) ;
 /* int r = s6lock_acquire_ex_g (&a, &id, file, &limit, &deadline) ; */
@@ -236,7 +236,7 @@ number may have been transmitted from
 

Synchronously waiting for locks

- int s6lock_wait_or_g (s6lock_t *a, uint16 const *idlist, unsigned int n, struct taia const *deadline)
+ int s6lock_wait_or_g (s6lock_t *a, uint16 const *idlist, unsigned int n, tain_t const *deadline)
Synchronously waits for one of the locks represented by the array pointed to by idlist of length n to be acquired. Returns -1 if it fails, or a nonnegative number on success, which is the index in idlist of the @@ -245,7 +245,7 @@ function returns -1 ETIMEDOUT.

- int s6lock_wait_and_g (s6lock_t *a, uint16 const *idlist, unsigned int n, struct taia const *deadline)
+ int s6lock_wait_and_g (s6lock_t *a, uint16 const *idlist, unsigned int n, tain_t const *deadline)
Synchronously waits for all of the locks represented by the array pointed to by idlist of length n to be acquired. Returns -1 if it fails and 0 if it succeeds. If no result has been obtained by deadline, the -- cgit v1.2.3