1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00
Frederik Haxel cb83a2ea8a core: 64 bit compatibility
Only minor changes are required to make the kernel 64 bit compatible.
Most of the changes are either DEBUG/printf formatting or different types for void pointer casting.

The only other change is the type of the `data` member in priority_queue_node_t, as `data` must be able to store a pointer.
For current architectures, the assumption `sizeof(unsigned int) == sizeof(void *)` holds, but not for 64 bit.
Therefore, the type is changed to `uintptr_t', which has the same size for the current architectures, but can also store a pointer in 64 bits.
2024-01-15 10:16:30 +01:00
..
2022-03-09 21:43:05 +01:00
2022-03-09 21:43:05 +01:00
2023-04-27 13:19:17 +02:00
2023-01-08 22:25:10 +01:00
2022-03-09 21:43:05 +01:00
2022-03-10 10:15:14 +01:00
2023-06-28 11:55:34 +02:00
2024-01-15 10:16:30 +01:00
2022-03-09 21:43:05 +01:00
2022-03-09 21:43:05 +01:00
2022-03-09 21:43:05 +01:00