summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThom Chiovoloni <thom@shift.click>2022-09-29 01:47:05 -0700
committerThom Chiovoloni <thom@shift.click>2022-09-29 01:47:05 -0700
commit1d7029adb840ba50e43f8e0aedb28fbddf322cdd (patch)
treef78bffc3307d6c703dcd346c9041956236fb5316
parent362960cecb52eb87fb07d022f6b0fe3b257c0592 (diff)
downloadrust-libc-1d7029adb840ba50e43f8e0aedb28fbddf322cdd.tar.gz
Use `::Option` and not `Option` for `pthread_jit_write_callback_t`
-rw-r--r--src/unix/bsd/apple/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unix/bsd/apple/mod.rs b/src/unix/bsd/apple/mod.rs
index 8c30eb2de3..d17d5e0050 100644
--- a/src/unix/bsd/apple/mod.rs
+++ b/src/unix/bsd/apple/mod.rs
@@ -119,7 +119,7 @@ pub type thread_throughput_qos_policy_t = *mut thread_throughput_qos_policy;
pub type pthread_introspection_hook_t =
extern "C" fn(event: ::c_uint, thread: ::pthread_t, addr: *mut ::c_void, size: ::size_t);
-pub type pthread_jit_write_callback_t = Option<extern "C" fn(ctx: *mut ::c_void) -> ::c_int>;
+pub type pthread_jit_write_callback_t = ::Option<extern "C" fn(ctx: *mut ::c_void) -> ::c_int>;
pub type vm_statistics_t = *mut vm_statistics;
pub type vm_statistics_data_t = vm_statistics;