Como encontro a quantidade de falhas de página menores usando “tempo”?

2

Como eu uso o utilitário time para mostrar o número de falhas de páginas secundárias?

    
por Paul Wand 06.04.2011 / 07:18

1 resposta

1

De acordo com a página man do time :

%R    Number of minor, or recoverable, page faults.  These are  faults
      for pages that are not valid but which have not yet been claimed
      by other virtual pages.  Thus the data  in  the  page  is  still
      valid but the system tables must be updated.

e

-f FORMAT, --format=FORMAT
      Specify  output format, possibly overriding the format specified
      in the environment variable TIME.

Assim:

time -f %R command
    
por 06.04.2011 / 12:51

Tags