lib: rosetta: change integer bootstrap args to fixed-width types
This commit is contained in:
@@ -26,17 +26,17 @@ struct rosetta_bootstrap_channel {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct rosetta_bootstrap {
|
struct rosetta_bootstrap {
|
||||||
int bs_argc;
|
uintptr_t bs_argc;
|
||||||
const char **bs_argv;
|
const char **bs_argv;
|
||||||
|
|
||||||
int bs_envc;
|
uintptr_t bs_envc;
|
||||||
const char **bs_envp;
|
const char **bs_envp;
|
||||||
|
|
||||||
const struct rosetta_bootstrap_handle *bs_handles;
|
const struct rosetta_bootstrap_handle *bs_handles;
|
||||||
size_t bs_handles_count;
|
uintptr_t bs_handles_count;
|
||||||
|
|
||||||
const struct rosetta_bootstrap_channel *bs_channels;
|
const struct rosetta_bootstrap_channel *bs_channels;
|
||||||
size_t bs_channels_count;
|
uintptr_t bs_channels_count;
|
||||||
};
|
};
|
||||||
|
|
||||||
extern const struct rosetta_bootstrap_channel *rosetta_bootstrap_get_channel(
|
extern const struct rosetta_bootstrap_channel *rosetta_bootstrap_get_channel(
|
||||||
|
|||||||
Reference in New Issue
Block a user