X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FMicroTime.cc;h=4a19fdf4bf339fda72a80e11258a1ce6dac71a08;hb=81ffa1c459b96dd44472bcef37e1e373934ee138;hp=23d2a99495cd3ed18d547622737293abd2a863ac;hpb=553781d9e9bce316dca24ac4f0c42e5613e849e0;p=senf.git diff --git a/Utils/MicroTime.cc b/Utils/MicroTime.cc index 23d2a99..4a19fdf 100644 --- a/Utils/MicroTime.cc +++ b/Utils/MicroTime.cc @@ -38,7 +38,7 @@ prefix_ senf::MicroTime senf::now() { struct timeval tv; if (gettimeofday(&tv,0) < 0) - throw SystemException(errno); + throw SystemException(errno); return 1000000*MicroTime(tv.tv_sec) + tv.tv_usec; } @@ -50,4 +50,10 @@ prefix_ senf::MicroTime senf::now() // Local Variables: // mode: c++ +// fill-column: 100 +// c-file-style: "senf" +// indent-tabs-mode: nil +// ispell-local-dictionary: "american" +// compile-command: "scons -u test" +// comment-column: 40 // End: