ca49d6a857
The _k_mutex linker section is used to gather instances of struct k_mutex into a list so that init_mutex_module() could iterate that list to perform runtime initialization tasks. In this case, we're not defining a struct k_mutex but rather a struct pthread_mutex which is a completely different structure. Not only those struct pthread_mutex would be corrupted with unexpected data, but since they're not the same size as struct k_mutex, the actual struct k_mutex instances that follow in the list would be misaligned and get corrupted too. There is nothing that requires runtime initialization in the static definition of a struct pthread_mutex so let's remove the section attribute. Signed-off-by: Nicolas Pitre <npitre@baylibre.com> |
||
---|---|---|
.. | ||
sys | ||
dirent.h | ||
mqueue.h | ||
posix_sched.h | ||
posix_types.h | ||
pthread.h | ||
pthread_key.h | ||
semaphore.h | ||
signal.h | ||
time.h | ||
unistd.h |