diff options
author | Jim Meyering <jim@meyering.net> | 1996-10-10 14:07:29 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1996-10-10 14:07:29 +0000 |
commit | 4c53aee40c338071e7541ad1eedf22b009ee2f06 (patch) | |
tree | e1b756e99003ae8c6940dcf8a213cc0a847501d4 /lib | |
parent | 3d35ef8670fd14e05134e75daa58c2773bbd754f (diff) | |
download | coreutils-4c53aee40c338071e7541ad1eedf22b009ee2f06.tar.xz |
.
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/interlock | 46 | ||||
-rwxr-xr-x | lib/ylwrap | 62 |
2 files changed, 108 insertions, 0 deletions
diff --git a/lib/interlock b/lib/interlock new file mode 100755 index 000000000..11be0d779 --- /dev/null +++ b/lib/interlock @@ -0,0 +1,46 @@ +#! /bin/sh + +# interlock - wrap program invocation in lock to allow +# parallel builds to work. +# Written by Tom Tromey <tromey@cygnus.com>, Aug 10 1996 +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +# Usage: +# interlock lock-dir-name program args-to-program... + +dirname="$1" +program="$2" + +shift +shift + +while (mkdir $dirname > /dev/null 2>&1 && exit 1 || exit 0); do + # Wait a bit. + sleep 1 +done + +# Race condition here: if interrupted after the loop but before this +# trap, the lock can be left around. +trap "rmdir $dirname > /dev/null 2>&1" 1 2 3 15 + +# We have the lock, so run the program. +$program ${1+"$@"} +ret=$? + +# Release the lock. +rmdir $dirname > /dev/null 2>&1 + +exit $ret diff --git a/lib/ylwrap b/lib/ylwrap new file mode 100755 index 000000000..9a484df82 --- /dev/null +++ b/lib/ylwrap @@ -0,0 +1,62 @@ +#! /bin/sh +# ylwrap - wrapper for lex/yacc invocations. +# Written by Tom Tromey <tromey@cygnus.com>, Aug 11 1996 +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +# Usage: +# ylwrap PROG [OUTPUT DESIRED]... -- [ARGS]... +# * PROG is program to run. +# * OUTPUT is file PROG generates +# * DESIRED is file we actually want +# * ARGS are passed to PROG +# Any number of OUTPUT,DESIRED pairs may be used. + +# The program to run. +prog="$1" +shift + +pairlist= +while test "$#" -ne 0; do + if test "$1" = "--"; then + break + fi + pairlist="$pairlist $1" + shift +done + +$prog ${1+"$@"} || exit $? + +set X $pairlist +shift +status=0 +first=yes +while "$#" -ne 0; do + if test -f "$1"; then + mv "$1" "$2" || status=$? + else + # A missing file is only an error for the first file. This is a + # blatant hack to let us support using "yacc -d". If -d is not + # specified, we don't want an error when the header file is + # "missing". + if test $first = yes; then + status=1 + fi + fi + shift + shift + first=no +done +exit $status |