From 74100f356c8b485e6c2b6c462ab42b6b172a676f Mon Sep 17 00:00:00 2001 From: Dmitri Pal Date: Jun 28 2010 12:38:14 +0000 Subject: Fixing types in queue and stack interfaces --- diff --git a/collection/Makefile.am b/collection/Makefile.am index b9975d1..4e90aed 100644 --- a/collection/Makefile.am +++ b/collection/Makefile.am @@ -41,7 +41,7 @@ libcollection_la_SOURCES = \ collection_priv.h \ ../trace/trace.h libcollection_la_LDFLAGS = \ - -version-info 1:0:0 + -version-info 2:0:0 # Build unit test check_PROGRAMS = collection_ut collection_stack_ut collection_queue_ut diff --git a/collection/collection_queue.c b/collection/collection_queue.c index 7e06833..adac8ee 100644 --- a/collection/collection_queue.c +++ b/collection/collection_queue.c @@ -108,7 +108,7 @@ int col_enqueue_binary_property(struct collection_item *queue, /* Put an int property into a queue. */ int col_enqueue_int_property(struct collection_item *queue, const char *property, - int number) + int32_t number) { int error = EOK; @@ -135,7 +135,7 @@ int col_enqueue_int_property(struct collection_item *queue, /* Put an unsigned int property into a queue. */ int col_enqueue_unsigned_property(struct collection_item *queue, const char *property, - unsigned int number) + uint32_t number) { int error = EOK; @@ -163,7 +163,7 @@ int col_enqueue_unsigned_property(struct collection_item *queue, /* Put a long property. */ int col_enqueue_long_property(struct collection_item *queue, const char *property, - long number) + int64_t number) { int error = EOK; @@ -190,7 +190,7 @@ int col_enqueue_long_property(struct collection_item *queue, /* Put an unsigned long property. */ int col_enqueue_ulong_property(struct collection_item *queue, const char *property, - unsigned long number) + uint64_t number) { int error = EOK; diff --git a/collection/collection_queue.h b/collection/collection_queue.h index 2fe0748..86c3925 100644 --- a/collection/collection_queue.h +++ b/collection/collection_queue.h @@ -144,7 +144,7 @@ int col_enqueue_binary_property(struct collection_item *queue, */ int col_enqueue_int_property(struct collection_item *queue, const char *property, - int number); + int32_t number); /** * @brief Add unsigned value to the queue. * @@ -167,7 +167,7 @@ int col_enqueue_int_property(struct collection_item *queue, */ int col_enqueue_unsigned_property(struct collection_item *queue, const char *property, - unsigned int number); + uint32_t number); /** * @brief Add long integer value to the queue. * @@ -190,7 +190,7 @@ int col_enqueue_unsigned_property(struct collection_item *queue, */ int col_enqueue_long_property(struct collection_item *queue, const char *property, - long number); + int64_t number); /** * @brief Add unsigned long value to the queue. * @@ -213,7 +213,7 @@ int col_enqueue_long_property(struct collection_item *queue, */ int col_enqueue_ulong_property(struct collection_item *queue, const char *property, - unsigned long number); + uint64_t number); /** * @brief Add floating point value to the queue. * diff --git a/collection/collection_stack.c b/collection/collection_stack.c index 503ada3..509df51 100644 --- a/collection/collection_stack.c +++ b/collection/collection_stack.c @@ -106,7 +106,7 @@ int col_push_binary_property(struct collection_item *stack, /* Push an int property to stack. */ int col_push_int_property(struct collection_item *stack, const char *property, - int number) + int32_t number) { int error = EOK; @@ -133,7 +133,7 @@ int col_push_int_property(struct collection_item *stack, /* Push an unsigned int property to stack. */ int col_push_unsigned_property(struct collection_item *stack, const char *property, - unsigned int number) + uint32_t number) { int error = EOK; @@ -161,7 +161,7 @@ int col_push_unsigned_property(struct collection_item *stack, /* Push a long property. */ int col_push_long_property(struct collection_item *stack, const char *property, - long number) + int64_t number) { int error = EOK; @@ -188,7 +188,7 @@ int col_push_long_property(struct collection_item *stack, /* Push an unsigned long property. */ int col_push_ulong_property(struct collection_item *stack, const char *property, - unsigned long number) + uint64_t number) { int error = EOK; diff --git a/collection/collection_stack.h b/collection/collection_stack.h index e4be156..f9b0130 100644 --- a/collection/collection_stack.h +++ b/collection/collection_stack.h @@ -145,7 +145,7 @@ int col_push_binary_property(struct collection_item *stack, */ int col_push_int_property(struct collection_item *stack, const char *property, - int number); + int32_t number); /** * @brief Push unsigned value to the stack. * @@ -168,7 +168,7 @@ int col_push_int_property(struct collection_item *stack, */ int col_push_unsigned_property(struct collection_item *stack, const char *property, - unsigned int number); + uint32_t number); /** * @brief Push long integer value to the stack. * @@ -191,7 +191,7 @@ int col_push_unsigned_property(struct collection_item *stack, */ int col_push_long_property(struct collection_item *stack, const char *property, - long number); + int64_t number); /** * @brief Push unsigned long value to the stack. * @@ -214,7 +214,7 @@ int col_push_long_property(struct collection_item *stack, */ int col_push_ulong_property(struct collection_item *stack, const char *property, - unsigned long number); + uint64_t number); /** * @brief Push floating point value to the stack. * diff --git a/collection/configure.ac b/collection/configure.ac index 25aba16..02c0ab4 100644 --- a/collection/configure.ac +++ b/collection/configure.ac @@ -1,5 +1,5 @@ AC_INIT([collection], - [0.4.0], + [0.5.0], [sssd-devel@lists.fedorahosted.org]) AC_CONFIG_SRCDIR([collection.c]) AC_CONFIG_AUX_DIR([build])