add types int32_array_t and int64_array_t
parent
ebe7d87ca4
commit
45da326ce2
|
|
@ -243,6 +243,18 @@ typedef struct
|
||||||
int count;
|
int count;
|
||||||
} key_value_array_t;
|
} key_value_array_t;
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
int32_t *values;
|
||||||
|
int count;
|
||||||
|
} int32_array_t;
|
||||||
|
|
||||||
|
typedef struct
|
||||||
|
{
|
||||||
|
int64_t *values;
|
||||||
|
int count;
|
||||||
|
} int64_array_t;
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
pthread_mutex_t lock;
|
pthread_mutex_t lock;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue