zephyr/scripts/waitpid

6 lines
139 B
Bash
Executable File

#!/bin/bash
# Copyright (c) 2017 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
while kill -0 $1 2> /dev/null; do sleep 1; done;