]> git.cworth.org Git - apitrace/blob - os_posix.cpp
Abstract process termination.
[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 <stdlib.h>
29 #include <pthread.h>
30
31 #include "os.hpp"
32
33 namespace OS {
34
35
36 static pthread_mutex_t 
37 mutex = PTHREAD_MUTEX_INITIALIZER;
38
39
40 void
41 AcquireMutex(void)
42 {
43     pthread_mutex_lock(&mutex);
44 }
45
46
47 void
48 ReleaseMutex(void)
49 {
50     pthread_mutex_unlock(&mutex);
51 }
52
53
54 bool
55 GetProcessName(char *str, size_t size)
56 {
57     ssize_t len;
58     char szProcessPath[PATH_MAX + 1];
59     char *lpProcessName;
60     
61     // http://stackoverflow.com/questions/1023306/finding-current-executables-path-without-proc-self-exe
62     len = readlink("/proc/self/exe", szProcessPath, sizeof(szProcessPath) - 1);
63     if (len == -1) {
64         *str = 0;
65         return false;
66     }
67     szProcessPath[len] = 0;
68
69     lpProcessName = strrchr(szProcessPath, '/');
70     lpProcessName = lpProcessName ? lpProcessName + 1 : szProcessPath;
71
72     strncpy(str, lpProcessName, size);
73     if (size)
74         str[size - 1] = 0;
75
76     return true;
77 }
78
79
80 void
81 Abort(void)
82 {
83     exit(0);
84 }
85
86
87 } /* namespace OS */