00001 //===-- Time.h --------------------------------------------------*- C++ -*-===// 00002 // 00003 // The KLEE Symbolic Virtual Machine 00004 // 00005 // This file is distributed under the University of Illinois Open Source 00006 // License. See LICENSE.TXT for details. 00007 // 00008 //===----------------------------------------------------------------------===// 00009 00010 #ifndef KLEE_UTIL_TIME_H 00011 #define KLEE_UTIL_TIME_H 00012 00013 namespace klee { 00014 namespace util { 00015 double getUserTime(); 00016 double getWallTime(); 00017 } 00018 } 00019 00020 #endif
1.5.8