cvs commit: src/usr.bin/make Makefile arch.c dir.c job.c lst.h make.c make.h suff.c targ.c src/usr.bin/make/lst.lib lstClose.c lstInit.c lstIsAtEnd.c lstNext.c lstOpen.c lstRemove.c

Hartmut Brandt harti at FreeBSD.org
Wed Dec 8 08:22:01 PST 2004


harti       2004-12-08 16:22:01 UTC

  FreeBSD src repository

  Modified files:
    usr.bin/make         Makefile arch.c dir.c job.c lst.h make.c 
                         make.h suff.c targ.c 
    usr.bin/make/lst.lib lstInit.c lstRemove.c 
  Removed files:
    usr.bin/make/lst.lib lstClose.c lstIsAtEnd.c lstNext.c 
                         lstOpen.c 
  Log:
  Get rid of the sequential access feature of the lists. This was used
  only in a couple of places and all of them except for one were easily
  converted to use Lst_First/Lst_Succ. The one place is compatibility
  mode in job.c where the it was used to advance to the next command on
  each invocation of JobStart. For this case add a pointer to the node to
  hold the currently executed command.
  
  Revision  Changes    Path
  1.39      +2 -2      src/usr.bin/make/Makefile
  1.41      +1 -8      src/usr.bin/make/arch.c
  1.42      +14 -39    src/usr.bin/make/dir.c
  1.68      +27 -36    src/usr.bin/make/job.c
  1.22      +0 -22     src/usr.bin/make/lst.h
  1.13      +0 -80     src/usr.bin/make/lst.lib/lstClose.c (dead)
  1.14      +0 -2      src/usr.bin/make/lst.lib/lstInit.c
  1.13      +0 -81     src/usr.bin/make/lst.lib/lstIsAtEnd.c (dead)
  1.15      +0 -106    src/usr.bin/make/lst.lib/lstNext.c (dead)
  1.14      +0 -83     src/usr.bin/make/lst.lib/lstOpen.c (dead)
  1.16      +0 -13     src/usr.bin/make/lst.lib/lstRemove.c
  1.30      +38 -46    src/usr.bin/make/make.c
  1.27      +3 -0      src/usr.bin/make/make.h
  1.36      +12 -28    src/usr.bin/make/suff.c
  1.31      +1 -5      src/usr.bin/make/targ.c


More information about the cvs-all mailing list