|
|
@ -365,7 +365,7 @@ function _gitstatus_daemon"${1:-}"() {
|
|
|
|
trap '' PIPE
|
|
|
|
trap '' PIPE
|
|
|
|
|
|
|
|
|
|
|
|
local uname_sm
|
|
|
|
local uname_sm
|
|
|
|
uname_sm="${(L)$(uname -sm)}" || return
|
|
|
|
uname_sm="${(L)$(command uname -sm)}" || return
|
|
|
|
[[ $uname_sm == [^' ']##' '[^' ']## ]] || return
|
|
|
|
[[ $uname_sm == [^' ']##' '[^' ']## ]] || return
|
|
|
|
local uname_s=${uname_sm% *}
|
|
|
|
local uname_s=${uname_sm% *}
|
|
|
|
local uname_m=${uname_sm#* }
|
|
|
|
local uname_m=${uname_sm#* }
|
|
|
@ -375,15 +375,15 @@ function _gitstatus_daemon"${1:-}"() {
|
|
|
|
else
|
|
|
|
else
|
|
|
|
local cpus
|
|
|
|
local cpus
|
|
|
|
if (( ! $+commands[sysctl] )) || [[ $uname_s == linux ]] ||
|
|
|
|
if (( ! $+commands[sysctl] )) || [[ $uname_s == linux ]] ||
|
|
|
|
! cpus="$(sysctl -n hw.ncpu)"; then
|
|
|
|
! cpus="$(command sysctl -n hw.ncpu)"; then
|
|
|
|
if (( ! $+commands[getconf] )) || ! cpus="$(getconf _NPROCESSORS_ONLN)"; then
|
|
|
|
if (( ! $+commands[getconf] )) || ! cpus="$(command getconf _NPROCESSORS_ONLN)"; then
|
|
|
|
cpus=8
|
|
|
|
cpus=8
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
args+=(-t $((cpus > 16 ? 32 : cpus > 0 ? 2 * cpus : 16)))
|
|
|
|
args+=(-t $((cpus > 16 ? 32 : cpus > 0 ? 2 * cpus : 16)))
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
mkfifo -- $file_prefix.fifo || return
|
|
|
|
command mkfifo -- $file_prefix.fifo || return
|
|
|
|
print -rnu $pipe_fd -- ${(l:20:)pgid} || return
|
|
|
|
print -rnu $pipe_fd -- ${(l:20:)pgid} || return
|
|
|
|
exec <$file_prefix.fifo || return
|
|
|
|
exec <$file_prefix.fifo || return
|
|
|
|
zf_rm -- $file_prefix.fifo || return
|
|
|
|
zf_rm -- $file_prefix.fifo || return
|
|
|
@ -752,7 +752,7 @@ function gitstatus_start"${1:-}"() {
|
|
|
|
print -ru2 -- ' System information:'
|
|
|
|
print -ru2 -- ' System information:'
|
|
|
|
print -Pru2 -- '%F{yellow}'
|
|
|
|
print -Pru2 -- '%F{yellow}'
|
|
|
|
print -ru2 -- " zsh: $ZSH_VERSION"
|
|
|
|
print -ru2 -- " zsh: $ZSH_VERSION"
|
|
|
|
print -ru2 -- " uname -a: $(uname -a)"
|
|
|
|
print -ru2 -- " uname -a: $(command uname -a)"
|
|
|
|
print -Pru2 -- '%f'
|
|
|
|
print -Pru2 -- '%f'
|
|
|
|
print -ru2 -- ' If you need help, open an issue and attach this whole error message to it:'
|
|
|
|
print -ru2 -- ' If you need help, open an issue and attach this whole error message to it:'
|
|
|
|
print -ru2 -- ''
|
|
|
|
print -ru2 -- ''
|
|
|
|