summaryrefslogtreecommitdiff
path: root/src/server/transition.h
blob: fcddfa6e176070a335c8d7625f3d4761c9999cf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ISC license. */

#ifndef S6RCD_TRANSITION_H
#define S6RCD_TRANSITION_H

#include <sys/types.h>
#include <stdint.h>


 /* Transitions */

typedef struct transition_s transition_t, *transition_t_ref ;
struct transition_s
{
  pid_t pid ;
} ;
#define TRANSITION_ZERO { .pid = 0 }

extern uint32_t ntransitions ;
transitions_t *transitions ;

#endif