Changeset 6560960 in mainline for uspace/lib/c
- Timestamp:
- 2012-08-20T22:46:13Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 077dad2
- Parents:
- 971f50e7 (diff), dd13349 (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
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/arch/abs32le/include/types.h
r971f50e7 r6560960 47 47 48 48 typedef uint32_t sysarg_t; 49 typedef int32_t native_t; 49 50 50 51 typedef int32_t ssize_t; -
uspace/lib/c/arch/amd64/include/types.h
r971f50e7 r6560960 47 47 48 48 typedef uint64_t sysarg_t; 49 typedef int64_t native_t; 49 50 50 51 typedef int64_t ssize_t; -
uspace/lib/c/arch/arm32/include/types.h
r971f50e7 r6560960 48 48 49 49 typedef uint32_t sysarg_t; 50 typedef int32_t native_t; 50 51 51 52 typedef int32_t ssize_t; -
uspace/lib/c/arch/ia32/include/types.h
r971f50e7 r6560960 47 47 48 48 typedef uint32_t sysarg_t; 49 typedef int32_t native_t; 49 50 50 51 typedef int32_t ssize_t; -
uspace/lib/c/arch/ia64/include/types.h
r971f50e7 r6560960 57 57 58 58 typedef uint64_t sysarg_t; 59 typedef int64_t native_t; 59 60 60 61 typedef int64_t ssize_t; -
uspace/lib/c/arch/mips32/include/types.h
r971f50e7 r6560960 48 48 49 49 typedef uint32_t sysarg_t; 50 typedef int32_t native_t; 50 51 51 52 typedef int32_t ssize_t; -
uspace/lib/c/arch/mips64/include/types.h
r971f50e7 r6560960 48 48 49 49 typedef uint64_t sysarg_t; 50 typedef int64_t native_t; 50 51 51 52 typedef int64_t ssize_t; -
uspace/lib/c/arch/ppc32/include/types.h
r971f50e7 r6560960 47 47 48 48 typedef uint32_t sysarg_t; 49 typedef int32_t native_t; 49 50 50 51 typedef int32_t ssize_t; -
uspace/lib/c/arch/sparc64/include/types.h
r971f50e7 r6560960 47 47 48 48 typedef uint64_t sysarg_t; 49 typedef int64_t native_t; 49 50 50 51 typedef int64_t ssize_t; -
uspace/lib/c/generic/io/input.c
r971f50e7 r6560960 143 143 x = IPC_GET_ARG1(*call); 144 144 y = IPC_GET_ARG2(*call); 145 max_x = IPC_GET_ARG 2(*call);146 max_y = IPC_GET_ARG 3(*call);145 max_x = IPC_GET_ARG3(*call); 146 max_y = IPC_GET_ARG4(*call); 147 147 148 148 rc = input->ev_ops->abs_move(input, x, y, max_x, max_y);
Note:
See TracChangeset
for help on using the changeset viewer.