]> git.cworth.org Git - apitrace/blob - os_posix.cpp
Cleanup files.
[apitrace] / os_posix.cpp
1 /**************************************************************************
2  *
3  * Copyright 2010 VMware, Inc.
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26 #include <string.h>
27 #include <unistd.h>
28 #include <pthread.h>
29
30 #include "os.hpp"
31
32 namespace OS {
33
34
35 static pthread_mutex_t 
36 mutex = PTHREAD_MUTEX_INITIALIZER;
37
38
39 void
40 AcquireMutex(void)
41 {
42     pthread_mutex_lock(&mutex);
43 }
44
45
46 void
47 ReleaseMutex(void)
48 {
49     pthread_mutex_unlock(&mutex);
50 }
51
52
53 bool
54 GetProcessName(char *str, size_t size)
55 {
56     ssize_t len;
57     char szProcessPath[PATH_MAX + 1];
58     char *lpProcessName;
59     
60     // http://stackoverflow.com/questions/1023306/finding-current-executables-path-without-proc-self-exe
61     len = readlink("/proc/self/exe", szProcessPath, sizeof(szProcessPath) - 1);
62     if (len == -1) {
63         *str = 0;
64         return false;
65     }
66     szProcessPath[len] = 0;
67
68     lpProcessName = strrchr(szProcessPath, '/');
69     lpProcessName = lpProcessName ? lpProcessName + 1 : szProcessPath;
70
71     strncpy(str, lpProcessName, size);
72     if (size)
73         str[size - 1] = 0;
74
75     return true;
76 }
77
78
79 } /* namespace OS */