/************************************************************************** * * Copyright 2010 VMware, Inc. * All Rights Reserved. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. * **************************************************************************/ #include #include #include #include #include #include #include "os.hpp" namespace OS { static pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER; void AcquireMutex(void) { pthread_mutex_lock(&mutex); } void ReleaseMutex(void) { pthread_mutex_unlock(&mutex); } bool GetProcessName(char *str, size_t size) { ssize_t len; char szProcessPath[PATH_MAX + 1]; char *lpProcessName; // http://stackoverflow.com/questions/1023306/finding-current-executables-path-without-proc-self-exe len = readlink("/proc/self/exe", szProcessPath, sizeof(szProcessPath) - 1); if (len == -1) { *str = 0; return false; } szProcessPath[len] = 0; lpProcessName = strrchr(szProcessPath, '/'); lpProcessName = lpProcessName ? lpProcessName + 1 : szProcessPath; strncpy(str, lpProcessName, size); if (size) str[size - 1] = 0; return true; } bool GetCurrentDir(char *str, size_t size) { char *ret; ret = getcwd(str, size); str[size - 1] = 0; return ret ? true : false; } void DebugMessage(const char *format, ...) { va_list ap; va_start(ap, format); fflush(stdout); vfprintf(stderr, format, ap); va_end(ap); } long long GetTime(void) { struct timeval tv; gettimeofday(&tv, NULL); return tv.tv_usec + tv.tv_sec*1000000LL; } void Abort(void) { exit(0); } } /* namespace OS */