Commit 87cee4dd by Marcus Winter

base_c: fixed compiler warning on linux

parent f3c23332
...@@ -241,7 +241,7 @@ int embb_thread_create(embb_thread_t* thread, const embb_core_set_t* core_set, ...@@ -241,7 +241,7 @@ int embb_thread_create(embb_thread_t* thread, const embb_core_set_t* core_set,
status = pthread_attr_setaffinity_np(&attr, sizeof(cpuset), &cpuset); status = pthread_attr_setaffinity_np(&attr, sizeof(cpuset), &cpuset);
if (status != 0) { if (status != 0) {
thread->embb_internal_arg = NULL; thread->embb_internal_arg = NULL;
thread->embb_internal_handle = NULL; thread->embb_internal_handle = 0;
return EMBB_ERROR; return EMBB_ERROR;
} }
#else #else
...@@ -254,7 +254,7 @@ int embb_thread_create(embb_thread_t* thread, const embb_core_set_t* core_set, ...@@ -254,7 +254,7 @@ int embb_thread_create(embb_thread_t* thread, const embb_core_set_t* core_set,
thread->embb_internal_arg = (embb_internal_thread_arg_t*) thread->embb_internal_arg = (embb_internal_thread_arg_t*)
embb_alloc(sizeof(embb_internal_thread_arg_t)); embb_alloc(sizeof(embb_internal_thread_arg_t));
if (thread->embb_internal_arg == NULL) { if (thread->embb_internal_arg == NULL) {
thread->embb_internal_handle = NULL; thread->embb_internal_handle = 0;
pthread_attr_destroy(&attr); pthread_attr_destroy(&attr);
return EMBB_NOMEM; return EMBB_NOMEM;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment