-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make upload job concurrent with lldb job #14
Conversation
4161cfd
to
88f39b7
Compare
@@ -32,22 +41,12 @@ if [[ "${#CORE_DUMPS[@]}" > 0 ]]; then | |||
(sleep "${DEBUGGER_TIMEOUT}"; kill "${DBG_PID}" 2>/dev/null >/dev/null; echo "DEBUGGER KILLED BY WATCHDOG TIMER") & | |||
|
|||
# Wait for one debugging command to finish before starting the next | |||
wait "${DBG_PID}" || true | |||
wait -f "${DBG_PID}" || true | |||
done |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this async printing isn't reliable enough for you, we could also pipe this through dd like so:
done | |
done | dd bs=64k status=none |
such that all of the content printed here gets buffered via dd
up to to the specified chunk size (64k) to make it atomic (and the same for each upload upon success of it as well)
good enough for me, thanks! |
No description provided.