Linux debugging

Check our new training course

Linux debugging, tracing, profiling & perf. analysis

Check our new training course
with Creative Commons CC-BY-SA
lecture and lab materials

Bootlin logo

Elixir Cross Referencer

1
2
3
4
5
6
#!/bin/bash
# Copyright (c) 2017 Intel Corporation
# SPDX-License-Identifier: Apache-2.0

trap "kill $1" SIGINT
while kill -0 $1 2> /dev/null; do sleep 1; done;