Skip to content
Snippets Groups Projects
Commit 421581b1 authored by Eric Vidal's avatar Eric Vidal :speech_balloon:
Browse files

fix state flags

parent 76688fd2
No related branches found
No related tags found
No related merge requests found
......@@ -20,14 +20,14 @@
#include <skalibs/uint32.h>
#include <skalibs/uint64.h>
#define SS_FLAGS_FALSE 0
#define SS_FLAGS_TRUE 1
#define SS_FLAGS_UNKNOWN 2
#define SS_FLAGS_RELOAD 0
#define SS_FLAGS_INIT 1
#define SS_FLAGS_UNSUPERVISE 2
#define SS_FLAGS_STATE 3
#define SS_FLAGS_PID 4
#define SS_FLAGS_FALSE (1 << 1)
#define SS_FLAGS_TRUE (1 << 2)
#define SS_FLAGS_UNKNOWN (1 << 3)
#define SS_FLAGS_RELOAD (1 << 4)
#define SS_FLAGS_INIT (1 << 5)
#define SS_FLAGS_UNSUPERVISE (1 << 6)
#define SS_FLAGS_STATE (1 << 7)
#define SS_FLAGS_PID (1 << 8)
typedef struct ss_state_s ss_state_t, *ss_state_t_ref ;
struct ss_state_s
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment