Home
last modified time | relevance | path

Searched refs:max_mabs_time (Results 1 – 2 of 2) sorted by relevance

/xnu-8020.121.3/osfmk/arm/
H A Dmodel_dep.c892 uint64_t max_mabs_time, current_mabs_time; in DebuggerXCallEnter() local
953 max_mabs_time = os_atomic_load(&debug_ack_timeout, relaxed); in DebuggerXCallEnter()
955 if (max_mabs_time > 0) { in DebuggerXCallEnter()
957 max_mabs_time += current_mabs_time; in DebuggerXCallEnter()
958 assert(max_mabs_time > current_mabs_time); in DebuggerXCallEnter()
968 while ((debugger_sync != 0) && (max_mabs_time == 0 || current_mabs_time < max_mabs_time)) { in DebuggerXCallEnter()
976 } else if (immediate_halt || (max_mabs_time > 0 && current_mabs_time >= max_mabs_time)) { in DebuggerXCallEnter()
1052 uint64_t max_mabs_time, current_mabs_time; in DebuggerXCallReturn() local
1062 max_mabs_time = os_atomic_load(&debug_ack_timeout, relaxed); in DebuggerXCallReturn()
1064 if (max_mabs_time > 0) { in DebuggerXCallReturn()
[all …]
H A Dcpu_common.c432 uint64_t start_mabs_time, max_mabs_time, current_mabs_time; in cpu_signal_internal() local
434 max_mabs_time = xcall_ack_timeout_abstime + current_mabs_time; in cpu_signal_internal()
435 assert(max_mabs_time > current_mabs_time); in cpu_signal_internal()
457 } while (!swap_success && ((current_mabs_time = mach_absolute_time()) < max_mabs_time)); in cpu_signal_internal()
464 if (__improbable(current_mabs_time >= max_mabs_time)) { in cpu_signal_internal()