Changeset 4805495 in mainline for uspace/lib/c/generic
- Timestamp:
- 2019-02-11T15:01:33Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ab936440, d5a89a3, fc448f5
- Parents:
- 8df5f20
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-01 23:30:11)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2019-02-11 15:01:33)
- Location:
- uspace/lib/c/generic
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async/client.c
r8df5f20 r4805495 95 95 */ 96 96 97 #define LIBC_ASYNC_C_97 #define _LIBC_ASYNC_C_ 98 98 #include <ipc/ipc.h> 99 99 #include <async.h> 100 100 #include "../private/async.h" 101 101 #include "../private/ns.h" 102 #undef LIBC_ASYNC_C_102 #undef _LIBC_ASYNC_C_ 103 103 104 104 #include <ipc/irq.h> -
uspace/lib/c/generic/async/ports.c
r8df5f20 r4805495 27 27 */ 28 28 29 #define LIBC_ASYNC_C_29 #define _LIBC_ASYNC_C_ 30 30 #include <ipc/ipc.h> 31 31 #include <async.h> 32 32 #include "../private/async.h" 33 #undef LIBC_ASYNC_C_33 #undef _LIBC_ASYNC_C_ 34 34 35 35 #include <ipc/irq.h> -
uspace/lib/c/generic/async/server.c
r8df5f20 r4805495 96 96 */ 97 97 98 #define LIBC_ASYNC_C_98 #define _LIBC_ASYNC_C_ 99 99 #include <ipc/ipc.h> 100 100 #include <async.h> 101 101 #include "../private/async.h" 102 #undef LIBC_ASYNC_C_102 #undef _LIBC_ASYNC_C_ 103 103 104 104 #include <ipc/irq.h> -
uspace/lib/c/generic/private/async.h
r8df5f20 r4805495 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
r8df5f20 r4805495 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__ -
uspace/lib/c/generic/private/fibril.h
r8df5f20 r4805495 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> -
uspace/lib/c/generic/private/futex.h
r8df5f20 r4805495 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
r8df5f20 r4805495 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
r8df5f20 r4805495 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
r8df5f20 r4805495 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
r8df5f20 r4805495 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
r8df5f20 r4805495 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
r8df5f20 r4805495 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
r8df5f20 r4805495 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
r8df5f20 r4805495 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
r8df5f20 r4805495 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
r8df5f20 r4805495 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.