Changeset 23c8acd9 in mainline for uspace/lib/c
- Timestamp:
- 2017-06-09T21:26:31Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 98a3879
- Parents:
- c09ff7b
- Location:
- uspace/lib/c
- Files:
-
- 1 added
- 27 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/abs32le/include/libarch/stddef.h
rc09ff7b r23c8acd9 39 39 40 40 typedef uint32_t size_t; 41 typedef int32_t ssize_t; 41 42 typedef int32_t ptrdiff_t; 42 43 -
uspace/lib/c/arch/abs32le/include/libarch/types.h
rc09ff7b r23c8acd9 48 48 typedef int32_t native_t; 49 49 50 typedef int32_t ssize_t;51 52 50 typedef uint32_t atomic_count_t; 53 51 typedef int32_t atomic_signed_t; -
uspace/lib/c/arch/amd64/include/libarch/stddef.h
rc09ff7b r23c8acd9 39 39 40 40 typedef uint64_t size_t; 41 typedef int64_t ssize_t; 41 42 typedef int64_t ptrdiff_t; 42 43 -
uspace/lib/c/arch/amd64/include/libarch/types.h
rc09ff7b r23c8acd9 48 48 typedef int64_t native_t; 49 49 50 typedef int64_t ssize_t;51 52 50 typedef uint64_t atomic_count_t; 53 51 typedef int64_t atomic_signed_t; -
uspace/lib/c/arch/arm32/include/libarch/stddef.h
rc09ff7b r23c8acd9 39 39 40 40 typedef uint32_t size_t; 41 typedef int32_t ssize_t; 41 42 typedef int32_t ptrdiff_t; 42 43 -
uspace/lib/c/arch/arm32/include/libarch/types.h
rc09ff7b r23c8acd9 49 49 typedef int32_t native_t; 50 50 51 typedef int32_t ssize_t;52 53 51 typedef uint32_t atomic_count_t; 54 52 typedef int32_t atomic_signed_t; -
uspace/lib/c/arch/ia32/include/libarch/stddef.h
rc09ff7b r23c8acd9 39 39 40 40 typedef uint32_t size_t; 41 typedef int32_t ssize_t; 41 42 typedef int32_t ptrdiff_t; 42 43 -
uspace/lib/c/arch/ia32/include/libarch/types.h
rc09ff7b r23c8acd9 48 48 typedef int32_t native_t; 49 49 50 typedef int32_t ssize_t;51 typedef uint32_t size_t;52 53 50 typedef uint32_t atomic_count_t; 54 51 typedef int32_t atomic_signed_t; -
uspace/lib/c/arch/ia64/include/libarch/stddef.h
rc09ff7b r23c8acd9 39 39 40 40 typedef uint64_t size_t; 41 typedef int64_t ssize_t; 41 42 typedef int64_t ptrdiff_t; 42 43 -
uspace/lib/c/arch/ia64/include/libarch/types.h
rc09ff7b r23c8acd9 48 48 typedef int64_t native_t; 49 49 50 typedef int64_t ssize_t;51 52 50 typedef uint64_t atomic_count_t; 53 51 typedef int64_t atomic_signed_t; -
uspace/lib/c/arch/mips32/include/libarch/stddef.h
rc09ff7b r23c8acd9 39 39 40 40 typedef uint32_t size_t; 41 typedef int32_t ssize_t; 41 42 typedef int32_t ptrdiff_t; 42 43 -
uspace/lib/c/arch/mips32/include/libarch/types.h
rc09ff7b r23c8acd9 49 49 typedef int32_t native_t; 50 50 51 typedef int32_t ssize_t;52 53 51 typedef uint32_t atomic_count_t; 54 52 typedef int32_t atomic_signed_t; -
uspace/lib/c/arch/ppc32/include/libarch/stddef.h
rc09ff7b r23c8acd9 39 39 40 40 typedef uint32_t size_t; 41 typedef int32_t ssize_t; 41 42 typedef int32_t ptrdiff_t; 42 43 -
uspace/lib/c/arch/ppc32/include/libarch/types.h
rc09ff7b r23c8acd9 48 48 typedef int32_t native_t; 49 49 50 typedef int32_t ssize_t;51 52 50 typedef uint32_t atomic_count_t; 53 51 typedef int32_t atomic_signed_t; -
uspace/lib/c/arch/riscv64/include/libarch/stddef.h
rc09ff7b r23c8acd9 39 39 40 40 typedef uint64_t size_t; 41 typedef int64_t ssize_t; 41 42 typedef int64_t ptrdiff_t; 42 43 -
uspace/lib/c/arch/riscv64/include/libarch/types.h
rc09ff7b r23c8acd9 48 48 typedef int64_t native_t; 49 49 50 typedef int64_t ssize_t;51 52 50 typedef uint64_t atomic_count_t; 53 51 typedef int64_t atomic_signed_t; -
uspace/lib/c/arch/sparc64/include/libarch/stddef.h
rc09ff7b r23c8acd9 39 39 40 40 typedef uint64_t size_t; 41 typedef int64_t ssize_t; 41 42 typedef int64_t ptrdiff_t; 42 43 -
uspace/lib/c/arch/sparc64/include/libarch/types.h
rc09ff7b r23c8acd9 48 48 typedef int64_t native_t; 49 49 50 typedef int64_t ssize_t;51 52 50 typedef uint64_t atomic_count_t; 53 51 typedef int64_t atomic_signed_t; -
uspace/lib/c/generic/bd.c
rc09ff7b r23c8acd9 44 44 #include <macros.h> 45 45 #include <stdlib.h> 46 #include < sys/types.h>46 #include <offset.h> 47 47 48 48 static void bd_cb_conn(ipc_callid_t iid, ipc_call_t *icall, void *arg); -
uspace/lib/c/include/bd.h
rc09ff7b r23c8acd9 37 37 38 38 #include <async.h> 39 #include < sys/types.h>39 #include <offset.h> 40 40 41 41 typedef struct { -
uspace/lib/c/include/bd_srv.h
rc09ff7b r23c8acd9 40 40 #include <fibril_synch.h> 41 41 #include <stdbool.h> 42 #include < sys/types.h>42 #include <offset.h> 43 43 44 44 typedef struct bd_ops bd_ops_t; -
uspace/lib/c/include/dirent.h
rc09ff7b r23c8acd9 38 38 #define NAME_MAX 256 39 39 40 #include < sys/types.h>40 #include <offset.h> 41 41 42 42 struct dirent { -
uspace/lib/c/include/stdint.h
rc09ff7b r23c8acd9 62 62 #include <libarch/stdint.h> 63 63 64 /* off64_t */65 #define OFF64_MIN INT64_MIN66 #define OFF64_MAX INT64_MAX67 68 /* aoff64_t */69 #define AOFF64_MIN UINT64_MIN70 #define AOFF64_MAX UINT64_MAX71 72 64 #endif 73 65 -
uspace/lib/c/include/stdio.h
rc09ff7b r23c8acd9 36 36 #define LIBC_STDIO_H_ 37 37 38 #include <sys/types.h>39 38 #include <stdarg.h> 40 39 #include <str.h> -
uspace/lib/c/include/sys/types.h
rc09ff7b r23c8acd9 38 38 #include <libarch/types.h> 39 39 40 /** Relative offset */41 typedef int64_t off64_t;42 43 /** Absolute offset */44 typedef uint64_t aoff64_t;45 46 40 typedef uint32_t fourcc_t; 47 41 -
uspace/lib/c/include/vbd.h
rc09ff7b r23c8acd9 39 39 #include <loc.h> 40 40 #include <types/label.h> 41 #include < sys/types.h>41 #include <offset.h> 42 42 43 43 /** VBD service */ -
uspace/lib/c/include/vfs/vfs.h
rc09ff7b r23c8acd9 43 43 #include <stdio.h> 44 44 #include <async.h> 45 #include <offset.h> 45 46 46 47 #define MAX_OPEN_FILES 128
Note:
See TracChangeset
for help on using the changeset viewer.