O que significam os números na coluna de status da lista launchctl?

10

launchctl tem uma coluna "Status" na saída da lista launchctl. A manpage ou qualquer uma das manpages launchd relacionadas não mencionam esta coluna ou o que ela significa.

    
por ldrg 14.09.2011 / 05:55

1 resposta

13

É o último código de saída desse serviço.

A página launchctl man descreve isso.

 list [-x] [label]
          With no arguments, list all of the jobs loaded into launchd in
          three columns. The first column displays the PID of the job if
          it is running.  The second column displays the last exit status
          of the job. If the number in this column is negative, it repre-
          sents the negative of the signal which killed the job.  Thus,
          "-15" would indicate that the job was terminated with SIGTERM.
          The third column is the job's label.
    
por 14.09.2011 / 06:00