You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
236 B
13 lines
236 B
4 months ago
|
#! /bin/bash
|
||
|
|
||
|
profile=${1:-default}
|
||
|
|
||
|
if [ ! $SCRIPTS_DIR ]; then
|
||
|
# assume we're running standalone
|
||
|
export SCRIPTS_DIR=../../scripts/
|
||
|
fi
|
||
|
|
||
|
source $SCRIPTS_DIR/setenv.sh
|
||
|
|
||
|
$SCRIPTS_DIR/run_c_files.sh $profile "hrtimer-prio"
|