Home
last modified time | relevance | path

Searched +full:- +full:- +full:detach +full:- +full:sig (Results 1 – 25 of 73) sorted by relevance

123

/external/catch2/docs/
Drelease-process.md8 … release. They serve to make sure that the new release is correct and linked-to from the standard …
30 …otes see previous releases. Once written, release notes should be added to `docs/release-notes.md`.
35 After version number is incremented, single-include header is regenerated and release notes are upd…
45 it should use linux line endings. All non-bundled reporters (Automake, TAP,
47 dependent on a specific version of the single-include header.
54 To create a signed tag, use `git tag -s <VERSION>`, where `<VERSION>`
55 is the version being released, e.g. `git tag -s v2.6.0`.
62 This will create ASCII-armored signatures for the headers that are
66 $ gpg2 --armor --output catch.hpp.asc --detach-sig catch.hpp
67 $ gpg2 --armor --output catch_reporter_automake.hpp.asc --detach-sig catch_reporter_automake.hpp
[all …]
/external/zstd/.github/workflows/
Dpublish-release-artifacts.yml1 name: publish-release-artifacts
6 - created
9 publish-release-artifacts:
10 runs-on: ubuntu-latest
14 - name: Checkout
17 - name: Archive
23 export TAG="$(echo "$GITHUB_REF" | sed -n 's_^refs/tags/__p')"
24 if [ -z "$TAG" ]; then
30 export VERSION="$(echo "$TAG" | sed 's_^v\([0-9]\+\.[0-9]\+\.[0-9]\+\)$_\1_')"
31 export ZSTD_VERSION="zstd-$VERSION"
[all …]
/external/strace/
Dstrace.c5 * Copyright (c) 1996-1999 Wichert Akkerman <wichert@cistron.nl>
6 * Copyright (c) 1999-2018 The strace developers.
73 #define my_tkill(tid, sig) syscall(__NR_tkill, (tid), (sig)) argument
100 /* -I n */
105 INTR_NEVER = 3, /* block fatal signals. default if '-o FILE PROG' */
114 * daemonized_tracer supports -D option.
116 * Unlike normal case, with -D *grandparent* process exec's,
119 * attaches to grandparent similarly to strace -p PID.
122 * wait() etc. Without -D, strace process gets lodged in between,
123 * disrupting parent<->child link.
[all …]
DREADME-linux-ptrace13 process (tracer). Attachment and subsequent commands are per-thread: in
14 multi-threaded process, every thread can be individually attached to a
17 (possibly multi-threaded) process". Ptrace commands are always sent to
28 ptrace commands from the tracer is called ptrace-stop. Ptrace-stops can
29 be further subdivided into signal-delivery-stop, group-stop,
30 syscall-stop and so on. They are described in detail later.
35 When a (possibly multi-threaded) process receives a killing signal (a
38 not a ptrace-stop (because tracer can't query tracee status such as
41 ptrace-stop.
43 Note that killing signal will first cause signal-delivery-stop (on one
[all …]
Dstrace.14 .\" Copyright (c) 1996-2017 The strace developers.
42 .\" an-ext.tmac.
44 . ie \\n(.$-1 \
51 . ie \\n(.$-1 \
56 .TH STRACE 1 "2018-07-07" "strace 4.25"
58 strace \- trace system calls and signals
62 .OP \-ACdffhikqrtttTvVxxy
65 .OP \-ACdffhiqrtttTvVxxy
67 .OP \-I n
68 .OP \-b execve
[all …]
Dstrace.1.in4 .\" Copyright (c) 1996-2017 The strace developers.
42 .\" an-ext.tmac.
44 . ie \\n(.$-1 \
51 . ie \\n(.$-1 \
58 strace \- trace system calls and signals
62 .OP \-ACdffhikqrtttTvVxxy
65 .OP \-ACdffhiqrtttTvVxxy
67 .OP \-I n
68 .OP \-b execve
69 .OM \-e expr
[all …]
/external/dtc/scripts/
Dkup-dtc2 # SPDX-License-Identifier: GPL-2.0-or-later
7 set -e
14 PREFIX="dtc-$VERSION/"
15 TAR="dtc-$VERSION.tar"
16 SIG="$TAR.sign"
18 git archive --format=tar --prefix="$PREFIX" -o "$TAR" "$TAG"
19 gpg --detach-sign --armor -o "$SIG" "$TAR"
21 ls -l "$TAR"*
24 gpg --verify "$SIG" "$TAR"
26 kup put --tar --prefix="$PREFIX" "$REMOTE_GIT" "$TAG" "$SIG" "$REMOTE_PATH/$TAR.gz"
/external/python/dateutil/
DRELEASING2 -----------------------------------------
7 release from https://www.iana.org/time-zones.
26 ----------
27 [ ] Check that README.rst is up-to-date.
32 -----------------------------------------
38 ----------
43 ----------
49 python setup.py sdist --formats=zip,gztar
59 ----------
73 ----------
[all …]
Drelease.py21 if click.confirm('{} is not empty - delete contents?'.format(DIST_PATH)):
30 '--formats=gztar'])
36 subprocess.check_call(['gpg', '--armor', '--output', fpath + '.asc',
37 '--detach-sig', fpath])
44 subprocess.check_call(['gpg', '--verify', fpath + '.asc', fpath])
48 @click.option('--passfile', default=None)
49 @click.option('--release/--no-release', default=False)
58 gpg_call = subprocess.run(['gpg', '-d', passfile],
62 username, password = gpg_call.stdout.decode('utf-8').split('\n')
73 args = ['twine', 'upload', '-r', repository] + dist_files
/external/ltp/testcases/kernel/syscalls/ipc/shmctl/
Dshmctl01.c1 // SPDX-License-Identifier: GPL-2.0-or-later
14 * - forking() children that attach and detach SHM
15 * - attaching the SHM before fork and letting the children detach it
171 if (ds->shm_segsz != SHM_SIZE) { in check_ds()
173 desc, ds->shm_segsz, SHM_SIZE); in check_ds()
178 if (ds->shm_cpid != pid) { in check_ds()
180 desc, ds->shm_cpid, pid); in check_ds()
185 if (ds->shm_ctime < ctime_min || ds->shm_ctime > ctime_max) { in check_ds()
187 desc, ds->shm_ctime, ctime_min, ctime_max); in check_ds()
190 desc, ds->shm_ctime, ctime_min, ctime_max); in check_ds()
[all …]
/external/rust/crates/nix/src/sys/ptrace/
Dbsd.rs68 ) -> Result<c_int> { in ptrace_other()
82 pub fn traceme() -> Result<()> { in traceme()
92 pub fn attach(pid: Pid) -> Result<()> { in attach()
101 /// signal specified by `sig`.
102 pub fn detach<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()> { in detach() function
103 let data = match sig.into() { in detach()
115 /// delivering a signal specified by `sig`.
116 pub fn cont<T: Into<Option<Signal>>>(pid: Pid, sig: T) -> Result<()> { in cont()
117 let data = match sig.into() { in cont()
131 pub fn kill(pid: Pid) -> Result<()> { in kill()
[all …]
Dlinux.rs190 ) -> Result<c_long> { in ptrace_peek()
212 pub fn getregs(pid: Pid) -> Result<user_regs_struct> { in getregs()
227 pub fn setregs(pid: Pid, regs: user_regs_struct) -> Result<()> { in setregs()
243 fn ptrace_get_data<T>(request: Request, pid: Pid) -> Result<T> { in ptrace_get_data()
262 ) -> Result<c_long> { in ptrace_other()
273 pub fn setoptions(pid: Pid, options: Options) -> Result<()> { in setoptions()
286 pub fn getevent(pid: Pid) -> Result<c_long> { in getevent()
291 pub fn getsiginfo(pid: Pid) -> Result<siginfo_t> { in getsiginfo()
296 pub fn setsiginfo(pid: Pid, sig: &siginfo_t) -> Result<()> { in setsiginfo()
303 sig as *const _ as *const c_void, in setsiginfo()
[all …]
/external/ppp/pppd/
Dmain.c2 * main.c - Point-to-Point Protocol main module
4 * Copyright (c) 1984-2000 Carnegie Mellon University. All rights reserved.
25 * Pittsburgh, PA 15213-3890
26 * (412) 268-4387, fax: (412) 268-7395
27 * tech-transfer@andrew.cmu.edu
42 * Copyright (c) 1999-2004 Paul Mackerras. All rights reserved.
103 #include "chap-new.h"
137 uid_t uid; /* Our real user-id */
168 static int fd_loop; /* fd for getting demand-dial packets */
171 int devfd = -1; /* fd of underlying device */
[all …]
/external/bc/scripts/
Dpackage.sh3 # SPDX-License-Identifier: BSD-2-Clause
5 # Copyright (c) 2018-2023 Gavin D. Howard and contributors.
30 # This script requires some non-POSIX utilities, but that's okay because it's
33 # The non-POSIX utilities include:
60 printf "$ stat -c '%%s %%n'\n" "$f"
61 stat -c '%s %n' "$f"
63 if [ -f "$f.sig" ]; then
64 rm -f "$f.sig"
67 gpg --detach-sig -o "$f.sig" "$f" 2> /dev/null
70 printf '$ sha512sum %s.sig\n' "$f"
[all …]
/external/tensorflow/tensorflow/tsl/platform/windows/
Dstacktrace_handler.cc7 http://www.apache.org/licenses/LICENSE-2.0
17 // clang-format off
20 // clang-format on
50 // program, instead of just re-triggering the signal handler. in AlarmThreadBody()
55 // There is no generally available async-signal safe function for converting an
57 // http://man7.org/linux/man-pages/man7/signal-safety.7.html). This function
86 for (int i = num_hex_chars - 1 + start_index; i >= start_index; --i) { in PtrToString()
121 static void StacktraceHandler(int sig) { in StacktraceHandler() argument
132 snprintf(buf, sizeof(buf), "*** Received signal %d ***\n", sig); in StacktraceHandler()
146 // program, instead of just re-triggering the signal handler. in StacktraceHandler()
[all …]
/external/libcups/scripts/
Dmakesrcdist3 # makesrcdist - make a source distribution of CUPS.
9 if test ! -f scripts/makesrcdist; then
10 echo "Run this script from the top-level CUPS source directory, e.g.:"
18 if (git status | grep -v makesrcdist | grep -v makerpm | grep -q modified:); then
20 git status | grep -v makesrcdist | grep modified:
27 rev=`git show --oneline | head -1 | awk '{print $1}'`
29 fileversion="2.3git-$rev"
30 fileurl="file://$TMPDIR/cups-${fileversion}-source.tar.gz"
33 # Use version from command-line
37 …fileurl="https://github.com/apple/cups/releases/download/v$fileversion/cups-${fileversion}-source.…
[all …]
/external/libnl/tools/
Dbuild_release.sh5 # - create new commit, bumping version number
6 # - run this script
7 # - check all is good
8 # - tag the commit (signed)
9 # git tag -m 'libnl-3.2.26-rc1' -s libnl3_2_26rc1 HEAD
10 # - publish the tarballs
11 # - push the commit to github
12 # - publish the tag on github
13 # - publish the tarballs on github
14 # - send ANN email
[all …]
/external/google-java-format/.github/workflows/
Drelease.yml1 name: Release google-java-format
11 build-maven-jars:
12 runs-on: ubuntu-latest
16 - name: Setup Signing Key
18 gpg-agent --daemon --default-cache-ttl 7200
19 echo -e "${{ secrets.GPG_SIGNING_KEY }}" | gpg --batch --import --no-tty
21 …gpg --detach-sig --yes -v --output=/dev/null --pinentry-mode loopback --passphrase "${{ secrets.GP…
23 gpg --list-secret-keys --keyid-format LONG
25 - name: Checkout
28 - name: Set up JDK
[all …]
/external/lzma/CPP/7zip/Archive/
DLzmaHandler.cpp59 bool HasSize() const { return (Size != (UInt64)(Int64)-1); } in HasSize()
68 const Byte *sig = buf + (isThereFilter ? 1 : 0); in Parse() local
70 LzmaProps[i] = sig[i]; in Parse()
71 Size = GetUi64(sig + 5); in Parse()
92 UInt64 GetInputProcessedSize() const { return _lzmaDecoderSpec->GetInputProcessedSize(); } in GetInputProcessedSize()
94 void ReleaseInStream() { if (_lzmaDecoder) _lzmaDecoderSpec->ReleaseInStream(); } in ReleaseInStream()
97 { return _lzmaDecoderSpec->ReadFromInputStream(data, size, processedSize); } in ReadInput()
105 _lzmaDecoderSpec->FinishStream = true; in Create()
115 _filterCoder->Filter = new NCompress::NBcj::CCoder(false); in Create()
120 return _lzmaDecoderSpec->SetInStream(inStream); in Create()
[all …]
/external/python/cpython3/Lib/email/
Dparser.py1 # Copyright (C) 2001-2007 Python Software Foundation
3 # Contact: email-sig@python.org
20 Creates an in-memory object tree representing the email message, which
25 continuation lines, optionally preceded by a `Unix-from' header. The
84 Creates an in-memory object tree representing the email message, which
89 continuation lines, optionally preceded by a `Unix-from' header. The
111 fp.detach()
/external/python/cpython2/Lib/
Dsubprocess.py1 # subprocess - Subprocesses with accessible I/O streams
5 # Copyright (c) 2003-2005 by Peter Astrand <astrand@lysator.liu.se>
28 ---------
46 check_output() returns a non-zero exit status.
56 return "Command '%s' returned non-zero exit status %d" % (self.cmd, self.returncode)
118 PIPE = -1
119 STDOUT = -2
137 """Return a list of command-line arguments reproducing the current
156 args.append('-' + opt * v)
158 args.append('-R')
[all …]
/external/libwebsockets/minimal-examples/api-tests/api-test-lws_sequencer/
Dmain.c2 * lws-api-test-lws_sequencer
64 sigint_handler(int sig) in sigint_handler() argument
70 * This is the sequencer-aware http protocol handler. It monitors the client
93 s->http_resp = (int)lws_http_client_http_response(wsi); in callback_http()
94 lwsl_info("Connected with server response: %d\n", s->http_resp); in callback_http()
104 while (len--) in callback_http()
118 int lenx = sizeof(buffer) - LWS_PRE; in callback_http()
121 return -1; in callback_http()
155 * So once we have informed it, we detach ourselves from the sequencer in callback_http()
164 s->cwsi = NULL; in callback_http()
[all …]
/external/autotest/utils/frozen_chromite/lib/
Dparallel.py1 # -*- coding: utf-8 -*-
3 # Use of this source code is governed by a BSD-style license that can be
43 resulting in temporary directories (pymp-xxx) not being cleaned
86 # many top-level paths in /tmp (see crbug.com/945523).
97 # when the enclosing with-statement exits.
188 # TODO(davidjames): Use python-2.7 syntax to simplify this.
215 'thread apply all py-list',
216 'thread apply all py-bt',
218 'detach',
226 ('pstree', '-Apals', pid),
[all …]
/external/python/cpython3/Lib/
Dsubprocess.py1 # subprocess - Subprocesses with accessible I/O streams
5 # Copyright (c) 2003-2005 by Peter Astrand <astrand@lysator.liu.se>
23 ---------
106 returns a non-zero exit status.
121 self.cmd, signal.Signals(-self.returncode))
124 self.cmd, -self.returncode)
126 return "Command '%s' returned non-zero exit status %d." % (
201 def Detach(self): member in Handle
233 # [1] https://docs.microsoft.com/en-us/windows/desktop/ProcThread/
234 # creating-processes
[all …]
/external/python/cpython3/Lib/asyncio/
Dunix_events.py70 for sig in list(self._signal_handlers):
71 self.remove_signal_handler(sig)
88 def add_signal_handler(self, sig, callback, *args): argument
98 self._check_signal(sig)
110 self._signal_handlers[sig] = handle
116 signal.signal(sig, _sighandler_noop)
119 signal.siginterrupt(sig, False)
121 del self._signal_handlers[sig]
124 signal.set_wakeup_fd(-1)
126 logger.info('set_wakeup_fd(-1) failed: %s', nexc)
[all …]

123