summaryrefslogtreecommitdiff
path: root/src/libs6/s6lock_check.c
blob: 8bdbae063459e2648ee8efc2c37d378f33e8c042 (plain)
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
/* ISC license. */

#include <stdint.h>
#include <errno.h>
#include <skalibs/error.h>
#include <skalibs/gensetdyn.h>
#include <s6/s6lock.h>

int s6lock_check (s6lock_t *a, uint16_t id)
{
  char *p = GENSETDYN_P(char, &a->data, id) ;
  switch (*p)
  {
    case EBUSY : return 1 ;
    case EINVAL : return (errno = EINVAL, -1) ;
    default :
    {
      if (error_isagain(*p)) return 0 ;
      errno = *p ;
      *p = EINVAL ;
      gensetdyn_delete(&a->data, id) ;
      return -1 ;
    }
  }
}