Sign in
pigweed
/
third_party
/
github
/
zephyrproject-rtos
/
zephyr
/
76b3518ce6c0da6c4f3a5f688ea4e5beb827ac2c
/
.
/
scripts
/
waitpid
blob: 11cdfc8144932d18363897f407b2376c931c8c7f [
file
] [
log
] [
blame
]
#!/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
;