Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 16 Sep 2010 11:33:31 +0000 (UTC)
From:      Rui Paulo <rpaulo@FreeBSD.org>
To:        cvs-src-old@freebsd.org
Subject:   cvs commit: src/usr.bin/kdump mksubr
Message-ID:  <201009161133.o8GBXrOO079408@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
rpaulo      2010-09-16 11:33:31 UTC

  FreeBSD src repository

  Modified files:
    usr.bin/kdump        mksubr 
  Log:
  SVN rev 212727 on 2010-09-16 11:33:31Z by rpaulo
  
  When generating functions to print the arguments of system calls with
  bitwise parameters (e.g. mmap), print the syscall parameter value first.
  The resulting output looks like the %b specifier of printf(9).
  
  Before:
  mmap(0,0x8000,PROT_READ|PROT_WRITE,...
  After:
  mmap(0,0x8000,0x3<PROT_READ|PROT_WRITE>,...
  
  Submitted by:   Norberto Lopes <nlopes.ml at gmail.com>
  Idea from:      freebsd-arch/2006-April/005116.html
  
  Revision  Changes    Path
  1.13      +5 -0      src/usr.bin/kdump/mksubr



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201009161133.o8GBXrOO079408>