Sign in
pigweed
/
third_party
/
github
/
zephyrproject-rtos
/
zephyr
/
3d2893cf85d51ceca04aa3bec2dd5fc77625ff81
/
.
/
scripts
/
waitpid
blob: 3e612a95620bbf38c5e4b0ccd0dd9ccb2b8a0d84 [
file
] [
log
] [
blame
]
#!/bin/bash
# Copyright (c) 2017 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
while
kill
-
0
$1
2
>
/
dev
/
null
;
do
sleep
1
;
done
;