Changes in uspace/lib/c/generic/rtld/module.c [ffccdff0:a0e2f9c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/rtld/module.c
rffccdff0 ra0e2f9c 40 40 #include <errno.h> 41 41 #include <loader/pcb.h> 42 #include <stdalign.h>43 42 #include <stdio.h> 44 43 #include <stdlib.h> … … 354 353 #ifdef CONFIG_TLS_VARIANT_1 355 354 rtld->tls_size = sizeof(tcb_t); 356 rtld->tls_align = alignof(tcb_t);355 rtld->tls_align = _Alignof(tcb_t); 357 356 358 357 list_foreach(rtld->modules, modules_link, module_t, m) { … … 367 366 #else 368 367 rtld->tls_size = 0; 369 rtld->tls_align = alignof(tcb_t);368 rtld->tls_align = _Alignof(tcb_t); 370 369 371 370 list_foreach(rtld->modules, modules_link, module_t, m) {
Note:
See TracChangeset
for help on using the changeset viewer.