Changeset d5a89a3 in mainline for uspace/lib/c/generic/private
- Timestamp:
- 2019-02-11T22:31:04Z (6 years ago)
- Children:
- aaf9789c
- Parents:
- e3272101 (diff), 4805495 (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/lib/c/generic/private
- Files:
-
- 13 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/private/async.h
re3272101 rd5a89a3 33 33 */ 34 34 35 #ifndef LIBC_PRIVATE_ASYNC_H_36 #define LIBC_PRIVATE_ASYNC_H_35 #ifndef _LIBC_PRIVATE_ASYNC_H_ 36 #define _LIBC_PRIVATE_ASYNC_H_ 37 37 38 38 #include <async.h> -
uspace/lib/c/generic/private/cc.h
re3272101 rd5a89a3 34 34 */ 35 35 36 #ifndef LIBC_CC_H_37 #define LIBC_CC_H_36 #ifndef _LIBC_CC_H_ 37 #define _LIBC_CC_H_ 38 38 39 39 #ifndef __clang__ 40 40 #define ATTRIBUTE_OPTIMIZE(opt) \ 41 41 __attribute__ ((optimize(opt))) 42 42 #else 43 43 #define ATTRIBUTE_OPTIMIZE(opt) 44 44 #endif 45 46 #define ATTRIBUTE_OPTIMIZE_NO_TLDP \ 47 ATTRIBUTE_OPTIMIZE("-fno-tree-loop-distribute-patterns") 45 48 46 49 #endif -
uspace/lib/c/generic/private/fibril.h
re3272101 rd5a89a3 27 27 */ 28 28 29 #ifndef LIBC_PRIVATE_FIBRIL_H_30 #define LIBC_PRIVATE_FIBRIL_H_29 #ifndef _LIBC_PRIVATE_FIBRIL_H_ 30 #define _LIBC_PRIVATE_FIBRIL_H_ 31 31 32 32 #include <adt/list.h> … … 35 35 #include <abi/proc/uarg.h> 36 36 #include <fibril.h> 37 #include <ipc/common.h> 37 38 38 39 #include "./futex.h" -
uspace/lib/c/generic/private/futex.h
re3272101 rd5a89a3 33 33 */ 34 34 35 #ifndef LIBC_FUTEX_H_36 #define LIBC_FUTEX_H_35 #ifndef _LIBC_FUTEX_H_ 36 #define _LIBC_FUTEX_H_ 37 37 38 38 #include <assert.h> -
uspace/lib/c/generic/private/io.h
re3272101 rd5a89a3 33 33 */ 34 34 35 #ifndef LIBC_PRIVATE_IO_H_36 #define LIBC_PRIVATE_IO_H_35 #ifndef _LIBC_PRIVATE_IO_H_ 36 #define _LIBC_PRIVATE_IO_H_ 37 37 38 38 #include <loader/pcb.h> -
uspace/lib/c/generic/private/libc.h
re3272101 rd5a89a3 33 33 */ 34 34 35 #ifndef LIBC_PRIVATE_LIBC_H_36 #define LIBC_PRIVATE_LIBC_H_35 #ifndef _LIBC_PRIVATE_LIBC_H_ 36 #define _LIBC_PRIVATE_LIBC_H_ 37 37 38 38 #include <types/common.h> -
uspace/lib/c/generic/private/loader.h
re3272101 rd5a89a3 33 33 */ 34 34 35 #ifndef LIBC_PRIVATE_LOADER_H_36 #define LIBC_PRIVATE_LOADER_H_35 #ifndef _LIBC_PRIVATE_LOADER_H_ 36 #define _LIBC_PRIVATE_LOADER_H_ 37 37 38 38 #include <loader/loader.h> -
uspace/lib/c/generic/private/malloc.h
re3272101 rd5a89a3 33 33 */ 34 34 35 #ifndef LIBC_PRIVATE_MALLOC_H_36 #define LIBC_PRIVATE_MALLOC_H_35 #ifndef _LIBC_PRIVATE_MALLOC_H_ 36 #define _LIBC_PRIVATE_MALLOC_H_ 37 37 38 38 extern void __malloc_init(void); -
uspace/lib/c/generic/private/ns.h
re3272101 rd5a89a3 33 33 */ 34 34 35 #ifndef LIBC_PRIVATE_NS_H_36 #define LIBC_PRIVATE_NS_H_35 #ifndef _LIBC_PRIVATE_NS_H_ 36 #define _LIBC_PRIVATE_NS_H_ 37 37 38 38 #include <async.h> -
uspace/lib/c/generic/private/scanf.h
re3272101 rd5a89a3 33 33 */ 34 34 35 #ifndef LIBC_PRIVATE_SCANF_H_36 #define LIBC_PRIVATE_SCANF_H_35 #ifndef _LIBC_PRIVATE_SCANF_H_ 36 #define _LIBC_PRIVATE_SCANF_H_ 37 37 38 38 #include <stddef.h> -
uspace/lib/c/generic/private/sstream.h
re3272101 rd5a89a3 33 33 */ 34 34 35 #ifndef LIBC_PRIVATE_SSTREAM_H_36 #define LIBC_PRIVATE_SSTREAM_H_35 #ifndef _LIBC_PRIVATE_SSTREAM_H_ 36 #define _LIBC_PRIVATE_SSTREAM_H_ 37 37 38 38 #include <stdio.h> -
uspace/lib/c/generic/private/stdio.h
re3272101 rd5a89a3 33 33 */ 34 34 35 #ifndef LIBC_PRIVATE_STDIO_H_36 #define LIBC_PRIVATE_STDIO_H_35 #ifndef _LIBC_PRIVATE_STDIO_H_ 36 #define _LIBC_PRIVATE_STDIO_H_ 37 37 38 38 #include <adt/list.h> -
uspace/lib/c/generic/private/stdlib.h
re3272101 rd5a89a3 33 33 */ 34 34 35 #ifndef LIBC_PRIVATE_STDLIB_H_36 #define LIBC_PRIVATE_STDLIB_H_35 #ifndef _LIBC_PRIVATE_STDLIB_H_ 36 #define _LIBC_PRIVATE_STDLIB_H_ 37 37 38 38 #include <adt/list.h> -
uspace/lib/c/generic/private/thread.h
re3272101 rd5a89a3 33 33 */ 34 34 35 #ifndef LIBC_PRIVATE_THREAD_H_36 #define LIBC_PRIVATE_THREAD_H_35 #ifndef _LIBC_PRIVATE_THREAD_H_ 36 #define _LIBC_PRIVATE_THREAD_H_ 37 37 38 38 #include <time.h>
Note:
See TracChangeset
for help on using the changeset viewer.