Add the following types:

* processor_flavor_t
 * processor_info_t
 * processor_info_array_t
This commit is contained in:
Guillaume Gomez 2021-03-29 21:52:05 +02:00
parent 86236a83f7
commit 0d89fe28f8

View File

@ -38,6 +38,7 @@ pub type sae_associd_t = u32;
pub type sae_connid_t = u32;
pub type mach_port_t = ::c_uint;
pub type processor_flavor_t = ::c_int;
pub type iconv_t = *mut ::c_void;
@ -49,6 +50,8 @@ pub type processor_set_basic_info_data_t = processor_set_basic_info;
pub type processor_set_basic_info_t = *mut processor_set_basic_info;
pub type processor_set_load_info_data_t = processor_set_load_info;
pub type processor_set_load_info_t = *mut processor_set_load_info;
pub type processor_info_t = *mut integer_t;
pub type processor_info_array_t = *mut integer_t;
deprecated_mach! {
pub type vm_prot_t = ::c_int;