/freebsd/sys/dev/ftwd/ |
H A D | ftwd.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 4 * Copyright (c) 2020 Poul-Henning Kamp 50 uint64_t timeout; in ftwd_func() local 52 uint8_t minutes = 0; in ftwd_func() local 57 /* Convert the requested timeout to seconds. */ in ftwd_func() 59 timeout = (uint64_t)1 << (cmd - WD_TO_1SEC); in ftwd_func() 61 timeout = 1; in ftwd_func() 63 if (timeout <= UINT8_MAX) { in ftwd_func() 64 val = timeout; in ftwd_func() [all …]
|
/freebsd/sys/contrib/openzfs/.github/workflows/ |
H A D | zfs-qemu.yml | 1 name: zfs-qemu 20 group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} 21 cancel-in-progress: true 24 test-config: 26 runs-on: ubuntu-24.04 31 - uses: actions/checkout@v4 33 fetch-depth: 0 34 - name: Generate OS config and CI type 37 …ebian12", "fedora40", "fedora41", "freebsd13-3r", "freebsd13-4s", "freebsd14-1r", "freebsd14-2s", … 38 …_OS='["almalinux8", "almalinux9", "debian12", "fedora41", "freebsd13-3r", "freebsd14-2r", "ubuntu2… [all …]
|
/freebsd/usr.bin/lock/ |
H A D | lock.1 | 1 .\"- 2 .\" SPDX-License-Identifier: BSD-3-Clause 40 .Op Fl t Ar timeout 48 will timeout after some interval of time and it may be killed by someone 52 .Bl -tag -width "-t timeout" 54 Do not use a timeout value. 59 .It Fl t Ar timeout 60 The time limit (default 15 minutes) is changed to 61 .Ar timeout 62 minutes. [all …]
|
H A D | lock.c | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 39 * Timeout interval is by default TIMEOUT, it can be changed with 40 * an argument of the form -time where time is in minutes 65 #define TIMEOUT 15 macro 72 static struct timeval timeout; variable 75 static long nexttime; /* keep the timeout time */ 97 sectimeout = TIMEOUT; in main() 103 while ((ch = getopt(argc, argv, "npt:v")) != -1) in main() 107 errx(1, "illegal timeout value"); in main() [all …]
|
/freebsd/libexec/bootpd/ |
H A D | bootpd.8 | 12 .Op Fl c Ar chdir-path 15 .Op Fl t Ar timeout 24 .Op Fl t Ar timeout 65 receive another packet within fifteen minutes of the last one 69 option controls this timeout (see OPTIONS). 103 .Bl -tag -width indent 106 .It Fl t Ar timeout 108 .Ar timeout 109 value (in minutes) that a 115 .Ar timeout [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/power/supply/ |
H A D | active-semi,act8945a-charger.yaml | 1 # SPDX-License-Identifier: GPL-2.0 3 --- 4 $id: http://devicetree.org/schemas/power/supply/active-semi,act8945a-charger.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 7 title: Active-semi ACT8945A Charger Function 10 - Sebastian Reichel <sre@kernel.org> 13 - $ref: power-supply.yaml# 17 const: active-semi,act8945a-charger 22 active-semi,chglev-gpios: 26 active-semi,lbo-gpios: [all …]
|
H A D | act8945a-charger.txt | 1 Device-Tree bindings for charger of Active-semi ACT8945A Multi-Function Device 4 - compatible: "active-semi,act8945a-charger". 5 - active-semi,chglev-gpios: charge current level phandle with args 7 - active-semi,lbo-gpios: specify the low battery voltage detect phandle 9 - interrupts: <a b> where a is the interrupt number and b is a 14 - active-semi,input-voltage-threshold-microvolt: unit: mV; 15 Specifies the charger's input over-voltage threshold value; 17 - active-semi,precondition-timeout: unit: minutes; 21 - active-semi,total-timeout: unit: hours; 28 compatible = "active-semi,act8945a"; [all …]
|
/freebsd/usr.sbin/nfsuserd/ |
H A D | nfsuserd.8 | 32 services plus support manage-gids for all NFS versions 36 .Op Fl usertimeout Ar minutes 40 .Op Fl manage-gids 47 For non-Kerberized NFSv4 mounts, this daemon must be running unless all 51 It also provides support for manage-gids and must be running on the server if 54 Upon startup, it loads the machine's DNS domain name, plus timeout and cache size 67 .Bl -tag -width Ds 74 .It Fl usertimeout Ar minutes 75 Overrides the default timeout for cache entries, in minutes. 79 If your user/group database management system almost never re-uses the same names [all …]
|
/freebsd/tools/test/stress2/misc/ |
H A D | spin.sh | 29 [ `id -u ` -ne 0 ] && echo "Must be root!" && exit 1 31 # Demonstrate starvation: Thread stuck in "ufs" for minutes. 39 timeout=1200 44 mycc -o spin -Wall -Wextra -O0 spin.c || exit 1 45 rm -f spin.c 48 mount | grep $mntpoint | grep -q /dev/md && umount -f $mntpoint 49 mdconfig -l | grep -q md$mdstart && mdconfig -d -u $mdstart 51 mdconfig -a -t swap -s 1g -u $mdstart || exit 1 52 newfs $newfs_flags -n md$mdstart > /dev/null 59 while kill -0 $! 2>/dev/null; do [all …]
|
/freebsd/usr.bin/quota/ |
H A D | quota.c | 2 * SPDX-License-Identifier: BSD-3-Clause 107 while ((ch = getopt(argc, argv, "f:ghlrquv")) != -1) { in main() 137 argc -= optind; in main() 159 for (; argc > 0; argc--, argv++) { in main() 168 for (; argc > 0; argc--, argv++) { in main() 183 "usage: quota [-ghlu] [-f path] [-v | -q | -r]", in usage() 184 " quota [-hlu] [-f path] [-v | -q | -r] user ...", in usage() 185 " quota -g [-hl] [-f path] [-v | -q | -r] group ..."); in usage() 201 name = pwd->pw_name; in showuid() 217 return(showquotas(USRQUOTA, pwd->pw_uid, name)); in showusrname() [all …]
|
/freebsd/crypto/openssh/.github/workflows/ |
H A D | selfhosted.yml | 1 name: C/C++ CI self-hosted 9 if: github.repository == 'openssh/openssh-portable-selfhosted' 10 runs-on: ${{ matrix.host }} 11 timeout-minutes: 600 17 fail-fast: false 23 - alpine 24 - centos7 25 - debian-i386 26 - dfly30 27 - dfly48 [all …]
|
/freebsd/bin/timeout/ |
H A D | timeout.1 | 1 .\" SPDX-License-Identifier: BSD-2-Clause 31 .Nm timeout 35 .Op Fl k Ar time | Fl -kill-after Ar time 36 .Op Fl s Ar sig | Fl -signal Ar sig 37 .Op Fl v | Fl -verbose 38 .Op Fl -foreground 39 .Op Fl -preserve-status 65 .Bl -tag -width indent 66 .It Fl k Ar time , Fl -kill-after Ar time 74 .It Fl s Ar sig , Fl -signal Ar sig [all …]
|
/freebsd/bin/pwait/ |
H A D | pwait.1 | 2 .\" Copyright (c) 2004-2009, Jilles Tjoelker 51 .Bl -tag -width indent 65 .Bl -tag -width indent -compact 69 minutes 75 .Ql timeout 85 flag is specified and a timeout occurs, the exit status will be 124. 94 Since a timeout occurs the exit status is 124: 95 .Bd -literal -offset indent 99 $ pwait -o -t5 1646 1647 106 .Ql timeout [all …]
|
/freebsd/libexec/bootpd/bootpgw/ |
H A D | bootpgw.c | 2 * bootpgw.c - BOOTP GateWay 109 { /* fifteen minutes */ 139 * Initialization such as command-line processing is done and then the 146 struct timeval *timeout; in main() local 208 timeout = &actualtimeout; in main() 219 bcopy(hep->h_addr, (char *)&my_ip_addr, sizeof(my_ip_addr)); in main() 224 for (argc--, argv++; argc > 0; argc--, argv++) { in main() 225 if (argv[0][0] != '-') in main() 235 } else if (argv[1] && argv[1][0] == '-') { in main() 237 * Backwards-compatible behavior: in main() [all …]
|
/freebsd/share/examples/ppp/ |
H A D | ppp.linkup.sample | 18 # It is no longer necessary to re-add the default route here as our 33 # nice things such as kick off "sendmail -q", "popclient my.isp" and 34 # "slurp -d news". It can be passed MYADDR, HISADDR and INTERFACE 35 # as arguments too - useful for informing a DNS of your assigned IP. 46 ! sh -c "cat /etc/ppp/linkup.au >/dev/audio" 48 # If your minimum call charge is 5 minutes, you may as well stay on 50 # timeout, set your timeout to 300 in ppp.conf and then do this: 53 !bg sh -c "sleep 240; pppctl -p mypassword 3000 set timeout 60"
|
/freebsd/usr.bin/chat/ |
H A D | chat.8 | 10 .Op Fl f Ar chat-file 11 .Op Fl r Ar report-file 12 .Op Fl T Ar phone-number 13 .Op Fl t Ar timeout 14 .Op Fl U Ar phone-number2 22 connection between the Point-to-Point Protocol Daemon 26 .Bl -tag -width indent 35 .It Fl f Ar chat-file 44 .It Fl r Ar report-file 74 .It Fl T Ar phone-number [all …]
|
/freebsd/secure/usr.bin/openssl/man/ |
H A D | openssl-ocsp.1 | 18 .\" Set up some character translations and predefined strings. \*(-- will 24 .tr \(*W- 27 . ds -- \(*W- 29 . if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch 30 . if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch 37 . ds -- \|\(em\| 71 .\" Fear. Run. Save yourself. No user-serviceable parts. 81 . ds #H ((1u-(\\\\n(.fu%2u))*.13m) 97 . ds ' \\k:\h'-(\\n(.wu*8/10-\*(#H)'\'\h"|\\n:u" 98 . ds ` \\k:\h'-(\\n(.wu*8/10-\*(#H)'\`\h'|\\n:u' [all …]
|
/freebsd/sys/dev/itwd/ |
H A D | itwd.c | 1 /*- 2 * SPDX-License-Identifier: BSD-2-Clause 54 uint64_t timeout; in wd_func() local 62 * Convert the requested timeout to seconds. in wd_func() 63 * If the timeout is smaller than the minimal supported value in wd_func() 70 timeout = (uint64_t)1 << (cmd - WD_TO_1SEC); in wd_func() 72 timeout = 1; in wd_func() 74 /* TODO If timeout is greater than maximum value in wd_func() 76 * switch the timer to minutes mode by clearing in wd_func() 82 * XXX The timeout actually can be up to 65535 units in wd_func() [all …]
|
/freebsd/contrib/sendmail/src/ |
H A D | sendmail.8 | 1 .\" Copyright (c) 1998-2003 Proofpoint, Inc. and its suppliers. 12 .\" $Id: sendmail.8,v 8.61 2013-11-22 20:51:56 ca Exp $ 14 .TH SENDMAIL 8 "$Date: 2013-11-22 20:51:56 $" 17 \- an electronic mail transport agent 25 .RB [ \-v ] 44 other programs provide user-friendly 47 is used only to deliver pre-formatted messages. 52 up to an end-of-file 70 .B \-Ac 74 .B \-Am [all …]
|
/freebsd/crypto/openssh/ |
H A D | sshd_config.5 | 50 The file contains keyword-argument pairs, one per line. 61 keywords are case-insensitive and arguments are case-sensitive): 62 .Bl -tag -width Ds 77 requests a pseudo-terminal as it is required by the protocol. 102 .Xr ssh-agent 1 127 Specifies whether StreamLocal (Unix-domain socket) forwarding is permitted. 189 This option must be followed by one or more lists of comma-separated 198 .Qq publickey,password publickey,keyboard-interactive 203 keyboard-interactive authentication before public key. 213 .Qq keyboard-interactive:bsdauth [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | LockFileManager.h | 1 //===--- LockFileManager.h - File-level locking utility ---------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 48 /// Reached timeout while waiting for the owner to release the lock. 80 /// Total timeout for the file to appear is ~1.5 minutes.
|
/freebsd/sbin/dhclient/ |
H A D | dhclient.conf.5 | 54 file is a free-form ASCII text file. 55 It is parsed by the recursive-descent parser built into 58 Keywords in the file are case-insensitive. 77 reasonable timing behaviour will be used by default - one which 83 .Bl -tag -width indent 84 .It Ic timeout Ar time ; 86 .Ic timeout 90 By default, this timeout is sixty seconds. 91 After the timeout has passed, if there are any static leases defined in the 104 By default, this is five minutes. [all …]
|
/freebsd/sbin/dump/ |
H A D | optr.c | 1 /*- 2 * SPDX-License-Identifier: BSD-3-Clause 57 * Query the operator; This previously-fascist piece of code 64 * Every 2 minutes we reprint the message, alerting others 67 static int timeout; variable 80 timeout = 0; in query() 82 back = -1; in query() 115 * sleep for 2 minutes in case nobody comes to satisfy dump 121 if (timeout == 0) in alarmcatch() 128 if (timeout) { in alarmcatch() [all …]
|
/freebsd/contrib/ntp/libparse/ |
H A D | clk_rawdcf.c | 2 * /src/NTP/REPOSITORY/ntp4-dev/libparse/clk_rawdcf.c,v 4.18 2006/06/22 18:40:01 kardel RELEASE_20060622_A 8 * Copyright (c) 1995-2015 by Frank Kardel <kardel <AT> ntp.org> 9 * Copyright (c) 1989-1994 by Frank Kardel, Friedrich-Alexander Universitaet Erlangen-Nuernberg, Germany 60 * From "Zur Zeit", Physikalisch-Technische Bundesanstalt (PTB), Braunschweig 73 * see the spec. (basically a (non-)inverted psuedo random phase shift) 77 * 0 - 10 AM: free, FM: 0 78 * 11 - 14 free 79 * 15 R - "cal 113 timestamp_t timeout; /* last timeout timestamp */ global() member 683 static struct timeval timeout = { 1, 500000 }; /* 1.5 secongs denote second #60 */ inp_rawdcf() local [all...] |
/freebsd/contrib/ntp/html/drivers/ |
H A D | driver7.html | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 4 <meta http-equiv="content-type" content="text/html;charset=iso-8859-1"> 13 <!-- #BeginDate format:En2m -->17-Jul-2014 02:17<!-- #EndDate --> 20 Modem Port: <tt>/dev/chu<i>u</i></tt>; 300 baud, 8-bits, no parity<br> 21 Autotune Port: <tt>/dev/icom</tt>; 1200/9600 baud, 8-bits, no parity<br> 25 …from Canadian time/frequency station <a href="http://inms-ienm.nrc-cnrc.gc.ca/time_services/shortw… 31 …-compatible, 300-b/s modem or modem chip, as described on the <a href="../pps.html">Pulse-per-seco… 32 …d ray geometry. In Newark DE, 625 km from the transmitter, the predicted one-hop propagation delay… 33 …r, the mean offset with a 2.4-GHz P4 running FreeBSD 6.1 is generally within 0.2 ms short-term wit… 37 <p>The driver processes 8-kHz μ-law companded codec samples using maximum-likelihood techniques … [all …]
|