Changeset 8591b31 in mainline for uspace/lib/c
- Timestamp:
- 2018-09-20T16:13:43Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cbc3587
- Parents:
- 9a5ae815
- Location:
- uspace/lib/c
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/private/futex.h
r9a5ae815 r8591b31 41 41 #include <libc.h> 42 42 #include <time.h> 43 #include <fibril.h> 43 44 44 45 typedef struct futex { 45 46 volatile atomic_int val; 46 47 #ifdef CONFIG_DEBUG_FUTEX 47 void *owner; 48 // FIXME: Should be _Atomic(fibril_t *) 49 fibril_t *owner; 48 50 #endif 49 51 } futex_t; -
uspace/lib/c/test/string.c
r9a5ae815 r8591b31 33 33 #include <pcut/pcut.h> 34 34 35 #ifndef __clang__ 35 36 #pragma GCC diagnostic ignored "-Wstringop-truncation" 36 37 #pragma GCC diagnostic ignored "-Wstringop-overflow" 38 #endif 37 39 38 40 PCUT_INIT;
Note:
See TracChangeset
for help on using the changeset viewer.