2022-12-29 10:25:50 +00:00
|
|
|
#ifndef SOCKS_TYPES_H_
|
|
|
|
|
#define SOCKS_TYPES_H_
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
2023-04-28 21:04:50 +01:00
|
|
|
#define CYCLES_MAX UINT64_MAX
|
|
|
|
|
|
2022-12-29 10:25:50 +00:00
|
|
|
typedef uintptr_t phys_addr_t;
|
2023-04-22 21:07:34 +01:00
|
|
|
typedef uint64_t cycles_t;
|
2023-07-08 15:55:43 +01:00
|
|
|
typedef uint64_t sectors_t;
|
2022-12-29 10:25:50 +00:00
|
|
|
|
2023-06-25 11:03:44 +01:00
|
|
|
typedef unsigned int umode_t;
|
|
|
|
|
|
2022-12-29 10:25:50 +00:00
|
|
|
#endif
|