The NetBSD Project

CVS log for src/usr.bin/timeout/timeout.c

[BACK] Up to [cvs.NetBSD.org] / src / usr.bin / timeout

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.5 / (download) - annotate - [select for diffs], Tue Dec 13 13:25:36 2022 UTC (3 months, 1 week ago) by kre
Branch: MAIN
CVS Tags: netbsd-10-base, netbsd-10, HEAD
Changes since 1.4: +12 -5 lines
Diff to previous 1.4 (colored)


POSIX is addint this utility in Issue 8 (whenever it appears).   However
they do not specify "long" options (ever).  The --preserve and --foreground
options in this utility had no short form, so they "invented" -p and -f
so only standard form one char options needed to be specified.

Change the opt processing here so -p == --preserve and -f == --foreground
so we support the options POSIX will specify.

No other changes here, just adding those alternates for the options.

Revision 1.4.6.2 / (download) - annotate - [select for diffs], Wed Aug 20 00:05:04 2014 UTC (8 years, 7 months ago) by tls
Branch: tls-maxphys
Changes since 1.4.6.1: +357 -0 lines
Diff to previous 1.4.6.1 (colored) to branchpoint 1.4 (colored) next main 1.5 (colored)

Rebase to HEAD as of a few days ago.

Revision 1.4.2.2 / (download) - annotate - [select for diffs], Sun Aug 10 06:59:06 2014 UTC (8 years, 7 months ago) by tls
Branch: tls-earlyentropy
Changes since 1.4.2.1: +357 -0 lines
Diff to previous 1.4.2.1 (colored) to branchpoint 1.4 (colored) next main 1.5 (colored)

Rebase.

Revision 1.4.6.1, Tue Aug 5 08:20:02 2014 UTC (8 years, 7 months ago) by tls
Branch: tls-maxphys
Changes since 1.4: +0 -357 lines
FILE REMOVED

file timeout.c was added on branch tls-maxphys on 2014-08-20 00:05:04 +0000

Revision 1.4.2.1, Tue Aug 5 08:20:02 2014 UTC (8 years, 7 months ago) by tls
Branch: tls-earlyentropy
Changes since 1.4: +0 -357 lines
FILE REMOVED

file timeout.c was added on branch tls-earlyentropy on 2014-08-10 06:59:06 +0000

Revision 1.4 / (download) - annotate - [select for diffs], Tue Aug 5 08:20:02 2014 UTC (8 years, 7 months ago) by christos
Branch: MAIN
CVS Tags: tls-maxphys-base, tls-earlyentropy-base, prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, phil-wifi-base, phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, phil-wifi-20191119, phil-wifi-20190609, phil-wifi, pgoyette-localcount-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, pgoyette-compat-merge-20190127, pgoyette-compat-base, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, pgoyette-compat, perseant-stdc-iso10646-base, perseant-stdc-iso10646, netbsd-9-base, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9, netbsd-8-base, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, netbsd-8, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0, netbsd-7, matt-nb8-mediatek-base, matt-nb8-mediatek, localcount-20160914, is-mlppp-base, is-mlppp, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Branch point for: tls-maxphys, tls-earlyentropy
Changes since 1.3: +3 -3 lines
Diff to previous 1.3 (colored)

Fix overflow check. From Kamil Rytarowski.

Revision 1.3 / (download) - annotate - [select for diffs], Sat Aug 2 09:16:22 2014 UTC (8 years, 7 months ago) by martin
Branch: MAIN
Changes since 1.2: +3 -3 lines
Diff to previous 1.2 (colored)

Cast signal argument of kill(2) to int, as sig_atomic_t may be larger.
Avoids:
src/usr.bin/timeout/timeout.c:331:5: error: conversion to 'int' from 'sig_atomic_t' may alter its value [-Werror=conversion]
     kill(pid, sig_term);
     ^
warning from gcc 4.8

Revision 1.2 / (download) - annotate - [select for diffs], Fri Aug 1 14:01:30 2014 UTC (8 years, 7 months ago) by christos
Branch: MAIN
Changes since 1.1: +36 -12 lines
Diff to previous 1.1 (colored)

PR/49053: Kamil Rytarowski: Import timeout(1) from FreeBSD

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Fri Aug 1 13:50:55 2014 UTC (8 years, 7 months ago) by christos
Branch: FreeBSD
CVS Tags: timeout-2014-08-01
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

import from FreeBSD

Revision 1.1 / (download) - annotate - [select for diffs], Fri Aug 1 13:50:55 2014 UTC (8 years, 7 months ago) by christos
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>