Changeset e48947e in mainline
- Timestamp:
- 2017-05-12T20:28:59Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8d2dd7f2
- Parents:
- 395df52 (diff), 02082f3 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- uspace
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ohci/hw_struct/hcca.h
r395df52 re48947e 40 40 #include <sys/types.h> 41 41 #include <macros.h> 42 #include <assert.h> 42 43 43 44 #include "mem_access.h" … … 60 61 } hcca_t; 61 62 62 STATIC_ASSERT(sizeof(hcca_t) == 256);63 static_assert(sizeof(hcca_t) == 256); 63 64 64 65 /** Allocate properly aligned structure. -
uspace/lib/c/arch/abs32le/include/libarch/tls.h
r395df52 re48947e 39 39 40 40 #include <libc.h> 41 #include <stddef.h> 41 42 42 43 typedef struct { -
uspace/lib/c/arch/abs32le/src/entry.c
r395df52 re48947e 32 32 #include <libarch/entry.h> 33 33 #include "../../../generic/private/libc.h" 34 #include <stddef.h> 34 35 35 36 void __entry(void) -
uspace/lib/c/arch/abs32le/src/stacktrace.c
r395df52 re48947e 32 32 #include <sys/types.h> 33 33 #include <stdbool.h> 34 #include <stddef.h> 34 35 #include <stacktrace.h> 35 36 -
uspace/lib/c/arch/abs32le/src/thread_entry.c
r395df52 re48947e 30 30 */ 31 31 32 #include <stddef.h> 32 33 #include "../../../generic/private/thread.h" 33 34 -
uspace/lib/c/include/macros.h
r395df52 re48947e 69 69 #define PADD8 _padd(8, __LINE__) 70 70 71 #define STATIC_ASSERT(cond) int sassert[(cond) ? 1 : -1]72 73 71 /** @} 74 72 */
Note:
See TracChangeset
for help on using the changeset viewer.