Profiling support added
* To use the benefits of profiling, set PROFILING=<target>
* eg: mbroeker@localhost $ make -e PROFILING=linux
* mbroeker@localhost $ export PROFILING=linux && make
committer: Markus Bröker <mbroeker@largo.homelinux.org>
#!/bin/bash
for i in {1..1000};
do
./client &
if [ $? == 0 ]; then
printf "Starting process\n";
fi
done;