Skip to content
Snippets Groups Projects
Commit eccd7d37 authored by Moe Jette's avatar Moe Jette
Browse files

Restructure code to eliminate warning error. No change in logic.

parent b8ba6796
No related branches found
No related tags found
No related merge requests found
...@@ -100,17 +100,19 @@ struct qsw_jobinfo { ...@@ -100,17 +100,19 @@ struct qsw_jobinfo {
/* Copy library state */ /* Copy library state */
#define _copy_libstate(dest, src) do { \ #define _copy_libstate(dest, src) do { \
assert((src)->ls_magic == QSW_LIBSTATE_MAGIC); \ assert((src)->ls_magic == QSW_LIBSTATE_MAGIC); \
assert((dest)->ls_magic == QSW_LIBSTATE_MAGIC); \ assert((dest)->ls_magic == QSW_LIBSTATE_MAGIC); \
memcpy(dest, src, sizeof(struct qsw_libstate)); \ memcpy(dest, src, sizeof(struct qsw_libstate)); \
} while (0) } while (0)
/* Lock on library state */ /* Lock on library state */
#define _lock_qsw() do { \ #define _lock_qsw() do { \
int err = pthread_mutex_lock(&qsw_lock); \ int err; \
err = pthread_mutex_lock(&qsw_lock); \
assert(err == 0); \ assert(err == 0); \
} while (0) } while (0)
#define _unlock_qsw() do { \ #define _unlock_qsw() do { \
int err = pthread_mutex_unlock(&qsw_lock); \ int err; \
err = pthread_mutex_unlock(&qsw_lock); \
assert(err == 0); \ assert(err == 0); \
} while (0) } while (0)
......
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